public function Attribute::toArray in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::toArray()
- 10 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\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 331
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;
}