public ContentEntityBase::isDefaultRevision($new_value = NULL)
Checks if this entity is the default revision.
Parameters
bool $new_value: (optional) A Boolean to (re)set the isDefaultRevision flag.
Return value
bool TRUE if the entity is the default revision, FALSE otherwise. If $new_value was passed, the previous value is returned.
Overrides RevisionableInterface::isDefaultRevision
File
- core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 294
Class
- ContentEntityBase
- Implements Entity Field API specific enhancements to the Entity class.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 5 6 7 | public function isDefaultRevision( $new_value = NULL) { $return = $this ->isDefaultRevision; if (isset( $new_value )) { $this ->isDefaultRevision = (bool) $new_value ; } return $return ; } |
Please login to continue.