Lines Matching defs:attribute
162 * Take an array where the key is the attribute name
165 * The attribute name and value are escaped
204 // * name may be alone (ie true boolean attribute)
240 * Return the attribute of a tag
428 * and process the plugin styling attribute such as width and height
429 * to put them in a style HTML attribute
799 static function addAttributeValue($attribute, $value, array &$attributes)
801 if (array_key_exists($attribute, $attributes) && $attributes[$attribute] !== "") {
802 $attributes[$attribute] .= " {$value}";
804 $attributes[$attribute] = "{$value}";