factory = $factory; } /** * Getting name * * @return mixed */ protected function getName() { return $this->_request->getParam('name'); } /** * Getting component * * @return mixed */ protected function getComponent() { return $this->_request->getParam('component'); } /** * Action for AJAX request * * @return void */ public function executeAjaxRequest() { $this->execute(); } /** * @return bool */ protected function _isAllowed() { return true; } }