function EventType::getEventEntityTypeId in RNG - Events and Registrations 8
Get event entity type ID.
Return value
string An entity type ID.
Overrides EventTypeInterface::getEventEntityTypeId
4 calls to EventType::getEventEntityTypeId()
- EventType::calculateDependencies in src/
Entity/ EventType.php - Calculates dependencies and stores them in the dependency property.
- EventType::delete in src/
Entity/ EventType.php - Deletes an entity permanently.
- EventType::id in src/
Entity/ EventType.php - Gets the identifier.
- EventType::postSave in src/
Entity/ EventType.php - Acts on a saved entity before the insert or update hook is invoked.
File
- src/
Entity/ EventType.php, line 128
Class
- EventType
- Defines the event type entity.
Namespace
Drupal\rng\EntityCode
function getEventEntityTypeId() {
return $this->entity_type;
}