Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Attribute.php

function 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\Template

Code

public function offsetGet($name) : mixed {
    if (isset($this->storage[$name])) {
        return $this->storage[$name];
    }
    // The 'class' array key is expected to be itself an array, and therefore
    // can be accessed using array append syntax before it has been initialized.
    if ($name === 'class') {
        // Initialize the class attribute as an empty array if not set.
        $this->offsetSet('class', []);
        return $this->storage['class'];
    }
    return NULL;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal