You are here

public function Attribute::offsetSet in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::offsetSet()
3 calls to Attribute::offsetSet()
Attribute::addClass in core/lib/Drupal/Core/Template/Attribute.php
Adds classes or merges them on to array of existing CSS classes.
Attribute::setAttribute in core/lib/Drupal/Core/Template/Attribute.php
Sets values for an attribute key.
Attribute::__construct in core/lib/Drupal/Core/Template/Attribute.php
Constructs a \Drupal\Core\Template\Attribute object.

File

core/lib/Drupal/Core/Template/Attribute.php, line 99

Class

Attribute
Collects, sanitizes, and renders HTML attributes.

Namespace

Drupal\Core\Template

Code

public function offsetSet($name, $value) {
  $this->storage[$name] = $this
    ->createAttributeValue($name, $value);
}