4
4
/**
5
5
* Generate a string of HTML attributes.
6
6
*
7
- * @param array|object $attr Associative array or object containing properties,
7
+ * @param array|object $attributes
8
+ * Associative array or object containing properties,
8
9
* representing attribute names and values.
9
- * @param callable|null $callback Callback function to escape the values for HTML attributes.
10
+ * @param callable|null $escape
11
+ * Callback function to escape the values for HTML attributes.
10
12
* Defaults to `esc_attr()`, if available, otherwise `htmlspecialchars()`.
11
13
* @return string Returns a string of HTML attributes
12
- * or a empty string if $attr is invalid or empty.
14
+ * or a empty string if $attributes is invalid or empty.
13
15
*/
14
- function html_build_attributes ($ attr , callable $ callback = null )
16
+ function html_build_attributes ($ attributes , callable $ escape = null )
15
17
{
16
- if (is_object ($ attr ) && !($ attr instanceof \Traversable)) {
17
- $ attr = get_object_vars ($ attr );
18
+ if (is_object ($ attributes ) && !($ attributes instanceof \Traversable)) {
19
+ $ attributes = get_object_vars ($ attributes );
18
20
}
19
21
20
- if (!is_array ($ attr ) || !count ($ attr )) {
22
+ if (!is_array ($ attributes ) || !count ($ attributes )) {
21
23
return '' ;
22
24
}
23
25
24
26
$ html = [];
25
- foreach ($ attr as $ key => $ val ) {
26
- if (is_string ($ key )) {
27
- $ key = trim ($ key );
27
+ foreach ($ attributes as $ attribute_name => $ attribute_value ) {
28
+ if (is_string ($ attribute_name )) {
29
+ $ attribute_name = trim ($ attribute_name );
28
30
29
- if (strlen ($ key ) === 0 ) {
31
+ if (strlen ($ attribute_name ) === 0 ) {
30
32
continue ;
31
33
}
32
34
}
33
35
34
- if (is_object ($ val ) && is_callable ($ val )) {
35
- $ val = $ val ();
36
+ if (is_object ($ attribute_value ) && is_callable ($ attribute_value )) {
37
+ $ attribute_value = $ attribute_value ();
36
38
}
37
39
38
- if (is_null ($ val )) {
40
+ if (is_null ($ attribute_value )) {
39
41
continue ;
40
42
}
41
43
42
- if (is_object ($ val )) {
43
- if (is_callable ([ $ val , 'toArray ' ])) {
44
- $ val = $ val ->toArray ();
45
- } elseif (is_callable ([ $ val , '__toString ' ])) {
46
- $ val = strval ($ val );
44
+ if (is_object ($ attribute_value )) {
45
+ if (is_callable ([ $ attribute_value , 'toArray ' ])) {
46
+ $ attribute_value = $ attribute_value ->toArray ();
47
+ } elseif (is_callable ([ $ attribute_value , '__toString ' ])) {
48
+ $ attribute_value = strval ($ attribute_value );
47
49
}
48
50
}
49
51
50
- if (is_bool ($ val )) {
51
- if ($ val ) {
52
- $ html [] = $ key ;
52
+ if (is_bool ($ attribute_value )) {
53
+ if ($ attribute_value ) {
54
+ $ html [] = $ attribute_name ;
53
55
}
54
56
continue ;
55
- } elseif (is_array ($ val )) {
56
- $ val = implode (' ' , array_reduce ($ val , function ($ tokens , $ token ) {
57
+ } elseif (is_array ($ attribute_value )) {
58
+ $ attribute_value = implode (' ' , array_reduce ($ attribute_value , function ($ tokens , $ token ) {
57
59
if (is_string ($ token )) {
58
60
$ token = trim ($ token );
59
61
@@ -67,22 +69,26 @@ function html_build_attributes($attr, callable $callback = null)
67
69
return $ tokens ;
68
70
}, []));
69
71
70
- if (strlen ($ val ) === 0 ) {
72
+ if (strlen ($ attribute_value ) === 0 ) {
71
73
continue ;
72
74
}
73
- } elseif (!is_string ($ val ) && !is_numeric ($ val )) {
74
- $ val = json_encode ($ val , (JSON_UNESCAPED_SLASHES |JSON_UNESCAPED_UNICODE ));
75
+ } elseif (!is_string ($ attribute_value ) && !is_numeric ($ attribute_value )) {
76
+ $ attribute_value = json_encode ($ attribute_value , (JSON_UNESCAPED_SLASHES |JSON_UNESCAPED_UNICODE ));
75
77
}
76
78
77
- if (is_callable ($ callback )) {
78
- $ val = $ callback ( $ val );
79
+ if (is_callable ($ escape )) {
80
+ $ attribute_value = $ escape ( $ attribute_value );
79
81
} elseif (function_exists ('esc_attr ' )) {
80
- $ val = esc_attr ($ val );
82
+ $ attribute_value = esc_attr ($ attribute_value );
81
83
} else {
82
- $ val = htmlspecialchars ($ val , ENT_QUOTES );
84
+ $ attribute_value = htmlspecialchars ($ attribute_value , ENT_QUOTES );
83
85
}
84
86
85
- $ html [] = sprintf ('%1$s="%2$s" ' , $ key , $ val );
87
+ $ html [] = sprintf (
88
+ '%1$s="%2$s" ' ,
89
+ $ attribute_name ,
90
+ $ attribute_value
91
+ );
86
92
}
87
93
88
94
return implode (' ' , $ html );
0 commit comments