public function Attribute::offsetGet in Drupal 9
Same name and namespace in other branches
- 8 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 93
Class
- Attribute
- Collects, sanitizes, and renders HTML attributes.
Namespace
Drupal\Core\TemplateCode
public function offsetGet($name) {
if (isset($this->storage[$name])) {
return $this->storage[$name];
}
}