Element.php
4.33 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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<?php
namespace AC\Form;
use AC\Renderable;
abstract class Element implements Renderable {
/**
* @var array
*/
protected $attributes = [];
/**
* Options for element like select
* @var array
*/
protected $options = [];
/**
* The elements value
* @var mixed
*/
protected $value;
/**
* Label
* @var string
*/
protected $label;
/**
* Extra description
* @var string
*/
protected $description;
/**
* Setup element with base name and id
*
* @param string $name
* @param array $options
*/
public function __construct( $name, array $options = [] ) {
$this->set_name( $name );
$this->set_id( $name );
$this->set_options( $options );
}
/**
* @return string|false
*/
protected function render_description() {
if ( ! $this->get_description() ) {
return false;
}
$template = '<p class="help-msg">%s</p>';
return sprintf( $template, $this->get_description() );
}
/**
* Render this element
* @return string
*/
abstract public function render(): string;
/**
* @param $key
*
* @return string|false
*/
public function get_attribute( $key ) {
if ( ! isset( $this->attributes[ $key ] ) ) {
return false;
}
return trim( $this->attributes[ $key ] );
}
/**
* @param string $key
* @param string $value
*
* @return $this
*/
public function set_attribute( $key, $value ) {
if ( 'value' === $key ) {
$this->set_value( $value );
return $this;
}
$this->attributes[ $key ] = $value;
return $this;
}
/**
* @return array
*/
public function get_attributes() {
return $this->attributes;
}
/**
* @param array $attributes
*
* @return $this
*/
public function set_attributes( array $attributes ) {
foreach ( $attributes as $key => $value ) {
$this->set_attribute( $key, $value );
}
return $this;
}
/**
* Get attributes as string
*
* @param array $attributes
*
* @return string
*/
protected function get_attributes_as_string( array $attributes ) {
$output = [];
foreach ( $attributes as $key => $value ) {
$output[] = $this->get_attribute_as_string( $key, $value );
}
return implode( ' ', $output );
}
/**
* Render an attribute
*
* @param string $key
* @param string $value
*
* @return string
*/
protected function get_attribute_as_string( $key, $value = null ) {
if ( null === $value ) {
$value = $this->get_attribute( $key );
}
return ac_helper()->html->get_attribute_as_string( $key, $value );
}
public function get_name() {
return $this->get_attribute( 'name' );
}
/**
* @param string $name
*
* @return $this
*/
public function set_name( $name ) {
return $this->set_attribute( 'name', $name );
}
/**
* @return false|string
*/
public function get_id() {
return $this->get_attribute( 'id' );
}
/**
* @param string $id
*
* @return $this
*/
public function set_id( $id ) {
return $this->set_attribute( 'id', $id );
}
/**
* @return mixed
*/
public function get_value() {
return $this->value;
}
/**
* @param mixed $value
*
* @return $this
*/
public function set_value( $value ) {
$this->value = $value;
return $this;
}
/**
* @param string $class
*
* @return $this
*/
public function set_class( $class ) {
$this->set_attribute( 'class', $class );
return $this;
}
/**
* @param string $class
*
* @return $this
*/
public function add_class( $class ) {
$parts = explode( ' ', (string) $this->get_attribute( 'class' ) );
$parts[] = $class;
$this->set_class( implode( ' ', $parts ) );
return $this;
}
/**
* @return string
*/
public function get_label() {
return $this->label;
}
/**
* @param string $label
*
* @return $this
*/
public function set_label( $label ) {
$this->label = $label;
return $this;
}
/**
* @param array $options
*
* @return $this
*/
public function set_options( array $options ) {
$this->options = $options;
return $this;
}
/**
* @return array
*/
public function get_options() {
return $this->options;
}
/**
* @return string
*/
public function get_description() {
return $this->description;
}
/**
* @param $description
*
* @return $this
*/
public function set_description( $description ) {
$this->description = $description;
return $this;
}
/**
* @return string
*/
public function __toString() {
return $this->render();
}
}