-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathComponent.php
More file actions
242 lines (209 loc) · 4.5 KB
/
Component.php
File metadata and controls
242 lines (209 loc) · 4.5 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php
/**
* Codifier Component abstraction.
*/
namespace Geniem\ACF;
use Geniem\ACF\Field\Common\Groupable,
Geniem\ACF\Interfaces\Component as ComponentInterface;
use Geniem\ACF\Interfaces\Renderer;
/**
* Class Component
*
* This class is an abstraction of a ACF Codifier component.
* A component is a reusable set of fields.
*
* @package Geniem\ACF
*/
abstract class Component implements ComponentInterface {
/**
* Import the groupable functionalities.
*/
use Groupable;
/**
* Component slug or name, internal
*
* @var string
*/
protected $name = '';
/**
* Component title, shows to the user
*
* @var string
*/
protected $title = '';
/**
* The block category
*
* @var string
*/
protected $category = '';
/**
* The block icon. Can hold both the string or array representation.
*
* @var string|array
*/
protected $icon = '';
/**
* The block keywords.
*
* @var array
*/
protected $keywords = [];
/**
* Component description, shows to the user
*
* @var string
*/
protected $description = '';
/**
* Component fields.
*
* @var array
*/
protected $fields = [];
/**
* Array of post types to restrict this block type to.
*
* @var array
*/
protected $post_types = [];
/**
* Display mode for the block.
*
* Options: auto, preview or edit.
*
* @var string
*/
protected $mode = 'preview';
/**
* The default block alignment.
*
* Options: left, center, right, wide or full.
*
* @var string
*/
protected $align = '';
/**
* An array of features for the block to support.
*
* @see https://wordpress.org/gutenberg/handbook/block-api/
*
* @var array
*/
protected $supports = [];
/**
* The renderer for this component.
*
* @var Renderer
*/
protected $renderer;
/**
* Getter for the name.
*
* @return string
*/
public function get_name() : string {
return $this->name;
}
/**
* Getter for the title.
*
* @return string
*/
public function get_title() : string {
return $this->title;
}
/**
* Getter for the description.
*
* @return string
*/
public function get_description() : string {
return $this->description;
}
/**
* Constructor method
*
* @param array|null $args Arguments to give to the block on creation.
*/
public function __construct( ?array $args = null ) {}
/**
* Set the renderer for the component.
*
* @param Renderer $renderer The renderer.
*/
public function set_renderer( Renderer $renderer ) {
$this->renderer = $renderer;
}
/**
* Getter for the component renderer.
*
* @return Renderer
* @throws Exception An exception is thrown if the renderer is not set
* and this method is called.
*/
public function get_renderer(): Renderer {
if ( empty( $this->renderer ) ) {
// The extending class must implement this method
// if the renderer is not set.
throw new Exception( 'You must implement get_renderer()' );
}
return $this->renderer;
}
/**
* Getter for the category.
*
* @return string
*/
public function get_category() : string {
return $this->category;
}
/**
* Getter for the icon.
*
* @return string
*/
public function get_icon() : string {
return $this->icon;
}
/**
* Getter for the keywords.
*
* @return array
*/
public function get_keywords() : array {
return $this->keywords;
}
/**
* Getter for the post types.
*
* @return array
*/
public function get_post_types() : array {
return $this->post_types;
}
/**
* Getter for the display mode.
*
* @return string
*/
public function get_mode() : string {
return $this->mode;
}
/**
* Getter for the default block alignment.
*
* @return string
*/
public function get_align() : string {
return $this->align;
}
/**
* Getter for the supported features of the block.
*
* @return array
*/
public function get_supports() : array {
return $this->supports;
}
}