You are here

public function Attribute::offsetGet in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::offsetGet()

File

core/lib/Drupal/Core/Template/Attribute.php, line 95
Contains \Drupal\Core\Template\Attribute.

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];
  }
}