generated from yii-tools/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHasData.php
42 lines (34 loc) · 1.07 KB
/
HasData.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
<?php
declare(strict_types=1);
namespace UIAwesome\Html\Attribute;
use Closure;
/**
* Is used by widgets that implement the dataAttributes method.
*
* Use enum classes that implement the DataAttributeValues interface to specify the data attribute keys.
*/
trait HasData
{
/**
* Set the data attribute.
*
* @param array $values The data attribute values.
*
* @return static A new instance of the current class with the specified data attribute values.
*
* @link https://html.spec.whatwg.org/multipage/dom.html#attr-data-*
*/
public function dataAttributes(array $values): static
{
$new = clone $this;
foreach ($values as $key => $value) {
if (!is_string($key) || (!is_string($value) && !$value instanceof Closure)) {
throw new \InvalidArgumentException(
'The data attribute key must be a string and the value must be a string or a Closure.',
);
}
$new->attributes["data-$key"] = $value;
}
return $new;
}
}