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

Breadcrumb

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

function Attribute::removeAttribute

Removes an attribute from an Attribute object.

Parameters

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

Return value

$this

File

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

Class

Attribute
Collects, sanitizes, and renders HTML attributes.

Namespace

Drupal\Core\Template

Code

public function removeAttribute(...$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;
}

API Navigation

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