public Attribute::toArray()
Returns all storage elements as an array.
Return value
array An associative array of attributes.
File
- core/lib/Drupal/Core/Template/Attribute.php, line 303
Class
- Attribute
- Collects, sanitizes, and renders HTML attributes.
Namespace
Drupal\Core\Template
Code
1 2 3 4 5 6 7 8 | public function toArray() { $return = []; foreach ( $this ->storage as $name => $value ) { $return [ $name ] = $value ->value(); } return $return ; } |
Please login to continue.