RevisionableEntityBundleInterface.php in Entity API 8.0
Same filename and directory in other branches
Namespace
Drupal\entity\EntityFile
src/Entity/RevisionableEntityBundleInterface.phpView source
<?php
/**
* @file
* Contains \Drupal\entity\Entity\RevisionableEntityBundleInterface.
*/
namespace Drupal\entity\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
interface RevisionableEntityBundleInterface extends ConfigEntityInterface {
/**
* Returns whether a new revision should be created by default.
*
* @return bool
* TRUE if a new revision should be created by default.
*/
public function shouldCreateNewRevision();
}
Interfaces
Name | Description |
---|---|
RevisionableEntityBundleInterface |