Attribute::removeAttribute

public Attribute::removeAttribute()

Removes an attribute from an Attribute object.

Parameters

string|array ...: Attributes to remove from the attribute array.

Return value

$this

File

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

Class

Attribute
Collects, sanitizes, and renders HTML attributes.

Namespace

Drupal\Core\Template

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public function removeAttribute() {
  $args = func_get_args();
  foreach ($args as $arg) {
    // Support arrays or multiple arguments.
    if (is_array($arg)) {
      foreach ($arg as $value) {
        unset($this->storage[$value]);
      }
    }
    else {
      unset($this->storage[$arg]);
    }
  }
 
  return $this;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.