getActionId()); } public function getActionId() { return Action::TYPE_EVENT_ACTION; } public function onLookupAction(Request $request, Action $action) { if (!($action instanceof ActionEvent)) { return false; } $eventAction = $action->getEventAction(); $eventAction = trim($eventAction); if (strlen($eventAction) > 0) { return $eventAction; } throw new InvalidRequestParameterException('Param `e_a` must not be empty or filled with whitespaces'); } }