function Attribute::toArray
Returns all storage elements as an array.
Return value
array An associative array of attributes.
1 call to Attribute::toArray()
- Attribute::merge in core/
lib/ Drupal/ Core/ Template/ Attribute.php - Merges an Attribute object into the current storage.
File
-
core/
lib/ Drupal/ Core/ Template/ Attribute.php, line 341
Class
- Attribute
- Collects, sanitizes, and renders HTML attributes.
Namespace
Drupal\Core\TemplateCode
public function toArray() {
$return = [];
foreach ($this->storage as $name => $value) {
$return[$name] = $value->value();
}
return $return;
}