_controllerName = $this->_resource->getAttribute('controllerName'); $this->_moduleName = $this->_resource->getAttribute('moduleName'); $this->_filesystemName = ucfirst($this->_controllerName) . 'Controller.php'; parent::init(); } /** * getPersistentAttributes * * @return array */ public function getPersistentAttributes() { return array( 'controllerName' => $this->getControllerName() ); } /** * getName() * * @return string */ public function getName() { return 'ControllerFile'; } /** * getControllerName() * * @return string */ public function getControllerName() { return $this->_controllerName; } /** * getContents() * * @return string */ public function getContents() { $filter = new Zend_Filter_Word_DashToCamelCase(); $className = ($this->_moduleName) ? $filter->filter(ucfirst($this->_moduleName)) . '_' : ''; $className .= ucfirst($this->_controllerName) . 'Controller'; $codeGenFile = new Zend_CodeGenerator_Php_File(array( 'fileName' => $this->getPath(), 'classes' => array( new Zend_CodeGenerator_Php_Class(array( 'name' => $className, 'extendedClass' => 'Zend_Controller_Action', 'methods' => array( new Zend_CodeGenerator_Php_Method(array( 'name' => 'init', 'body' => '/* Initialize action controller here */', )) ) )) ) )); if ($className == 'ErrorController') { $codeGenFile = new Zend_CodeGenerator_Php_File(array( 'fileName' => $this->getPath(), 'classes' => array( new Zend_CodeGenerator_Php_Class(array( 'name' => $className, 'extendedClass' => 'Zend_Controller_Action', 'methods' => array( new Zend_CodeGenerator_Php_Method(array( 'name' => 'errorAction', 'body' => <<_getParam('error_handler'); if (!\$errors || !\$errors instanceof ArrayObject) { \$this->view->message = 'You have reached the error page'; return; } switch (\$errors->type) { case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE: case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER: case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION: // 404 error -- controller or action not found \$this->getResponse()->setHttpResponseCode(404); \$priority = Zend_Log::NOTICE; \$this->view->message = 'Page not found'; break; default: // application error \$this->getResponse()->setHttpResponseCode(500); \$priority = Zend_Log::CRIT; \$this->view->message = 'Application error'; break; } // Log exception, if logger available if (\$log = \$this->getLog()) { \$log->log(\$this->view->message, \$priority, \$errors->exception); \$log->log('Request Parameters', \$priority, \$errors->request->getParams()); } // conditionally display exceptions if (\$this->getInvokeArg('displayExceptions') == true) { \$this->view->exception = \$errors->exception; } \$this->view->request = \$errors->request; EOS )), new Zend_CodeGenerator_Php_Method(array( 'name' => 'getLog', 'body' => <<getInvokeArg('bootstrap'); if (!\$bootstrap->hasResource('Log')) { return false; } \$log = \$bootstrap->getResource('Log'); return \$log; EOS )), ) )) ) )); } // store the generator into the registry so that the addAction command can use the same object later Zend_CodeGenerator_Php_File::registerFileCodeGenerator($codeGenFile); // REQUIRES filename to be set return $codeGenFile->generate(); } /** * addAction() * * @param string $actionName */ public function addAction($actionName) { $classCodeGen = $this->getCodeGenerator(); $classCodeGen->setMethod(array('name' => $actionName . 'Action', 'body' => ' // action body here')); file_put_contents($this->getPath(), $classCodeGen->generate()); } /** * getCodeGenerator() * * @return Zend_CodeGenerator_Php_Class */ public function getCodeGenerator() { $codeGenFile = Zend_CodeGenerator_Php_File::fromReflectedFileName($this->getPath()); $codeGenFileClasses = $codeGenFile->getClasses(); $class = array_shift($codeGenFileClasses); return $class; } }