public function RevisionableInterface::isDefaultRevision in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/RevisionableInterface.php \Drupal\Core\Entity\RevisionableInterface::isDefaultRevision()
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.
1 method overrides RevisionableInterface::isDefaultRevision()
- ContentEntityBase::isDefaultRevision in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Checks if this entity is the default revision.
File
- core/
lib/ Drupal/ Core/ Entity/ RevisionableInterface.php, line 57 - Contains \Drupal\Core\Entity\RevisionableInterface.
Class
- RevisionableInterface
- Provides methods for an entity to support revisions.
Namespace
Drupal\Core\EntityCode
public function isDefaultRevision($new_value = NULL);