public Attribute::removeAttribute()
Removes an attribute from an Attribute object.
string|array ...: Attributes to remove from the attribute array.
$this
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; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Template!Attribute.php/function/Attribute::removeAttribute/8.1.x