public function EventHandler::getEvent in Services Client 7.2
Retrieve event definition.
Return value
ServicesClientEvent Event object wrapped by current handler.
6 calls to EventHandler::getEvent()
- EntityDeleteHandler::execute in include/
event.inc - Execute event and send event to remove endpoint.
- EntitySaveHandler::execute in include/
event.inc - Execute event and send event to remove endpoint.
- EventHandler::getObjectCacheOrCache in include/
event.inc - Retrieve current object from cache. If not currently in object cache adds object to object cache.
- EventHandler::isChanged in include/
event.inc - Determine weather object has been changed by editing configuration and not which isn't stored in permanent storage.
- EventHandler::save in include/
event.inc - Save current event configuration to database.
File
- include/
event.inc, line 49
Class
- EventHandler
- Event handler plugin.
Code
public function getEvent() {
$this->event->config = $this
->getConfiguration();
return $this->event;
}