-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTag.php
336 lines (288 loc) · 7.59 KB
/
Tag.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
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<?php
declare(strict_types=1);
/**
* This file is part of the EaseHtml package
*
* https://github.com/VitexSoftware/php-ease-html
*
* (c) Vítězslav Dvořák <http://vitexsoftware.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Ease\Html;
/**
* @author Vítězslav Dvořák <info@vitexsoftware.cz>, Jana Viktorie Borbina <jana@borbina.com>
*/
use Ease\Document;
use Ease\Functions;
/*
* Common HTML tag class.
*/
class Tag extends Document
{
/**
* Tag name - is also used as an object name.
*/
public string $tagName = '';
/**
* Tag property fields.
*/
public array $tagProperties = [];
/**
* the field from which the contents of the STYLE tag are rendered.
*/
public array $cssProperties = [];
/**
* Do not log HTML object events.
*/
public string $logType = 'none';
/**
* Trailing for xhtml.
*/
public string $trail = ' /';
/**
* Should the object automatically fulfill the name property?
*/
public bool $setName = false;
/**
* Tag type - e.g. A or STRONG.
*/
private string $tagType = '';
/**
* Object for rendering a general unpaired html tag.
*
* @param string $tagType tag type
* @param array $properties tag properties
*/
public function __construct($tagType = null, $properties = null)
{
$this->setTagType(null === $tagType ? $this->getTagType() : $tagType);
parent::__construct();
if ($properties) {
$this->setTagProperties($properties);
}
$this->setObjectName();
}
/**
* Sets ObjectName.
*
* @param string $objectName object name
*
* @return string New object name
*/
public function setObjectName($objectName = null)
{
if ((null === $objectName) === false) {
$objName = parent::setObjectName($objectName);
} else {
if (empty($this->tagName) === false) {
$objName = parent::setObjectName(\get_class($this).'@'.$this->tagName);
} else {
if (empty($this->tagType) === false) {
$objName = parent::setObjectName(\get_class($this).'@'.$this->tagType);
} else {
$objName = parent::setObjectName();
}
}
}
return $objName;
}
/**
* Name tag settings. Unused ...
*
* @param string $tagName he name of the tag in the property NAME
*/
public function setTagName($tagName): void
{
$this->tagName = $tagName;
if ($this->setName) {
$this->tagProperties['name'] = $tagName;
}
$this->setObjectName();
}
/**
* Returns the name of the tag.
*
* @return string
*/
public function getTagName()
{
return $this->setName ? $this->getTagProperty('name') : $this->tagName;
}
/**
* Sets up tag type.
*
* @param string $tagType tag type e.g. img
*/
public function setTagType($tagType): void
{
$this->tagType = $tagType;
}
/**
* Returns tag type.
*
* @return string tag type e.g. img
*/
public function getTagType()
{
return $this->tagType;
}
/**
* Sets tag class.
*
* @param string $className jméno css třídy
*/
public function setTagClass($className): void
{
$this->setTagProperties(['class' => $className]);
}
/**
* Adds tag class.
*
* @param string $className jméno css třídy
*/
public function addTagClass($className): void
{
$this->setTagClass(trim($this->getTagClass().' '.$className));
}
/**
* Returns tags css class.
*/
public function getTagClass()
{
return $this->getTagProperty('class');
}
/**
* Sets the tag specified by the id, or randomly generated.
*
* @param string $tagID html tag #ID for JavaScript a Css
*
* @return string the set ID
*/
public function setTagID($tagID = null)
{
$this->setTagProperties(['id' => null === $tagID ? Functions::randomString() : $tagID]);
return $this->getTagID();
}
/**
* Returns taga html ID.
*
* @return string
*/
public function getTagID()
{
return $this->getTagProperty('id');
}
/**
* Sets tag property to given value.
*
* @param string $name
* @param string $value
*
* @return bool
*/
public function setTagProperty($name, $value)
{
$this->tagProperties[$name] = $value;
return true;
}
/**
* Returns property tag value.
*
* @param string $propertyName the name of the tag property. eg "src" next to the image
*
* @return string current tag property value
*/
public function getTagProperty($propertyName)
{
return \array_key_exists($propertyName, $this->tagProperties) ? $this->tagProperties[$propertyName] : null;
}
/**
* Sets tag parameters.
*
* @param array $properties associative array of tag parameters
*
* @return bool operation success
*/
public function setTagProperties(array $properties)
{
if (isset($properties['id'])) {
$properties['id'] = preg_replace(
'/[^A-Za-z0-9_\\-]/',
'',
$properties['id'],
);
}
$this->tagProperties = empty($this->tagProperties) ? $properties : array_merge(
$this->tagProperties,
$properties,
);
if (isset($properties['name'])) {
$this->setTagName($properties['name']);
}
return true;
}
/**
* Returns tag parameters as a string.
*
* @return string
*/
public function tagPropertiesToString()
{
$props = [];
foreach ($this->tagProperties as $propName => $propValue) {
$props[] = \is_string($propName) ? $propName.'="'.$propValue.'"' : $propValue;
}
return implode(' ', $props);
}
/**
* Sets Css parameters.
*
* @param array $cssProperties asociative feild, or CSS definition
*/
public function setTagCss(array $cssProperties): void
{
$this->cssProperties = $cssProperties;
$this->setTagProperties(['style' => $this->cssPropertiesToString()]);
}
/**
* Returns Css parameters as a string.
*
* @param array|string $cssProperties parameter feild, or CSS definition
*
* @return string
*/
public function cssPropertiesToString($cssProperties = null)
{
if (!$cssProperties) {
$cssProperties = $this->cssProperties;
}
$cssPropertiesString = ' ';
foreach ($cssProperties as $cssPropertyName => $cssPropertiesssPropertyValue) {
$cssPropertiesString .= $cssPropertyName.':'.$cssPropertiesssPropertyValue.';';
}
return trim($cssPropertiesString);
}
/**
* Add Css to tag properties.
*/
#[\Override]
public function finalize(): void
{
if (!empty($this->cssProperties)) {
$this->setTagProperties(['style' => $this->cssPropertiesToString()]);
}
parent::finalize();
}
/**
* Renders tag.
*/
#[\Override]
public function draw(): void
{
echo '<'.trim($this->tagType.' '.$this->tagPropertiesToString());
echo $this->trail.'>';
$this->drawStatus = true;
}
}