function ContentEntityBase::isDefaultRevision
2 calls to ContentEntityBase::isDefaultRevision()
- MenuLinkContent::postSave in core/
modules/ menu_link_content/ src/ Entity/ MenuLinkContent.php - Acts on a saved entity before the insert or update hook is invoked.
- Node::postSave in core/
modules/ node/ src/ Entity/ Node.php - Acts on a saved entity before the insert or update hook is invoked.
File
-
core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php, line 347
Class
- ContentEntityBase
- Implements Entity Field API specific enhancements to the Entity class.
Namespace
Drupal\Core\EntityCode
public function isDefaultRevision($new_value = NULL) {
$return = $this->isDefaultRevision;
if (isset($new_value)) {
$this->isDefaultRevision = (bool) $new_value;
}
// New entities should always ensure at least one default revision exists,
// creating an entity without a default revision is an invalid state.
return $this->isNew() || $return;
}