-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
class-gutenberg-block-template.php
115 lines (100 loc) · 1.41 KB
/
class-gutenberg-block-template.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
/**
* Blocks API: Gutenberg_Block_Template class
*
* @package WordPress
* @since 5.5.0
*/
/**
* Class representing a block template.
*/
class Gutenberg_Block_Template {
/**
* Type: wp_template or wp_template_part
*
* @var string
*/
public $type;
/**
* Theme.
*
* @var string
*/
public $theme;
/**
* Template slug.
*
* @var string
*/
public $slug;
/**
* Id.
*
* @var string
*/
public $id;
/**
* Title.
*
* @var string
*/
public $title = '';
/**
* Content.
*
* @var string
*/
public $content = '';
/**
* Description.
*
* @var string
*/
public $description = '';
/**
* Source of the content. `theme` and `custom` is used for now.
*
* @var string
*/
public $source = 'theme';
/**
* Origin of the content when the content has been customized.
* When customized, origin takes on the value of source and source becomes
* 'custom'.
*
* @var string
*/
public $origin;
/**
* Post Id.
*
* @var integer|null
*/
public $wp_id;
/**
* Template Status.
*
* @var string
*/
public $status;
/**
* Whether a template is, or is based upon, an existing template file.
*
* @var boolean
*/
public $has_theme_file;
/**
* Whether a template is a custom template.
*
* @var bool
*/
public $is_custom = true;
/**
* Author.
*
* A value of 0 means no author.
*
* @var int
*/
public $author = 0;
}