function Attribute::offsetGet

Same name in other branches
  1. 9 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::offsetGet()
  2. 10 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::offsetGet()
  3. 11.x core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::offsetGet()
1 call to Attribute::offsetGet()
Attribute::getClass in core/lib/Drupal/Core/Template/Attribute.php
Gets the class attribute value if set.

File

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

Class

Attribute
Collects, sanitizes, and renders HTML attributes.

Namespace

Drupal\Core\Template

Code

public function offsetGet($name) {
    if (isset($this->storage[$name])) {
        return $this->storage[$name];
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.