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
1 2 3 4 5 6 7 8 9 10 | 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 ]); } } |
Please login to continue.