interface ConfigEntityLockableInterface in Simple OAuth (OAuth2) & OpenID Connect 5.x
Same name and namespace in other branches
- 8.4 src/Entity/ConfigEntityLockableInterface.php \Drupal\simple_oauth\Entity\ConfigEntityLockableInterface
- 8.2 src/Entity/ConfigEntityLockableInterface.php \Drupal\simple_oauth\Entity\ConfigEntityLockableInterface
- 8.3 src/Entity/ConfigEntityLockableInterface.php \Drupal\simple_oauth\Entity\ConfigEntityLockableInterface
Hierarchy
- interface \Drupal\simple_oauth\Entity\ConfigEntityLockableInterface
Expanded class hierarchy of ConfigEntityLockableInterface
All classes that implement ConfigEntityLockableInterface
File
- src/
Entity/ ConfigEntityLockableInterface.php, line 5
Namespace
Drupal\simple_oauth\EntityView source
interface ConfigEntityLockableInterface {
/**
* Checks if the entity is locked against changes.
*
* @return bool
*/
public function isLocked();
/**
* Locks the entity.
*/
public function lock();
/**
* Unlocks the entity.
*/
public function unlock();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigEntityLockableInterface:: |
public | function | Checks if the entity is locked against changes. | |
ConfigEntityLockableInterface:: |
public | function | Locks the entity. | |
ConfigEntityLockableInterface:: |
public | function | Unlocks the entity. |