public function Rule::getEvent in RNG - Events and Registrations 8.2
Same name and namespace in other branches
- 8 src/Entity/Rule.php \Drupal\rng\Entity\Rule::getEvent()
- 3.x src/Entity/Rule.php \Drupal\rng\Entity\Rule::getEvent()
Gets the event entity.
Return value
\Drupal\Core\Entity\EntityInterface|null The event entity. Or NULL if it does not exist.
Overrides RuleInterface::getEvent
File
- src/
Entity/ Rule.php, line 47
Class
- Rule
- Defines the event rule entity.
Namespace
Drupal\rng\EntityCode
public function getEvent() {
return $this
->get('event')->entity;
}