function Attribute::hasAttribute

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::hasAttribute()
  2. 8.9.x core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::hasAttribute()
  3. 10 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::hasAttribute()

Checks if the storage has an attribute with the given name.

Parameters

string $name: The name of the attribute to check for.

Return value

bool Returns TRUE if the attribute exists, or FALSE otherwise.

File

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

Class

Attribute
Collects, sanitizes, and renders HTML attributes.

Namespace

Drupal\Core\Template

Code

public function hasAttribute($name) {
    return array_key_exists($name, $this->storage);
}

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