ContentEntityBase::__unset

public ContentEntityBase::__unset($name)

Implements the magic method for unset().

File

core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 967

Class

ContentEntityBase
Implements Entity Field API specific enhancements to the Entity class.

Namespace

Drupal\Core\Entity

Code

public function __unset($name) {
  // Unsetting a field means emptying it.
  if ($this->hasField($name)) {
    $this->get($name)->setValue(array());
  }
  // For non-field properties, unset the internal value.
  else {
    unset($this->values[$name]);
  }
}
doc_Drupal
2016-10-29 08:57:03
Comments
Leave a Comment

Please login to continue.