true]); Config::setAirtimeVersion(); require_once CONFIG_PATH . 'navigation.php'; Zend_Validate::setDefaultNamespaces('Zend'); $front = Zend_Controller_Front::getInstance(); $front->registerPlugin(new RabbitMqPlugin()); $front->throwExceptions(false); /* The bootstrap class should only be used to initialize actions that return a view. Actions that return JSON will not use the bootstrap class! */ class Bootstrap extends Zend_Application_Bootstrap_Bootstrap { protected function _initDoctype() { $this->bootstrap('view'); $view = $this->getResource('view'); $view->doctype('XHTML1_STRICT'); } /** * initialize front controller. * * This is call ZFrontController to ensure it is executed last in the bootstrap process. */ protected function _initZFrontController() { Zend_Controller_Front::getInstance()->throwExceptions(false); } protected function _initRouter() { $front = Zend_Controller_Front::getInstance(); $router = $front->getRouter(); $front->setBaseUrl(Application_Common_OsPath::getBaseDir()); $router->addRoute( 'password-change', new Zend_Controller_Router_Route('password-change/:user_id/:token', [ 'module' => 'default', 'controller' => 'login', 'action' => 'password-change', ]) ); } public function _initPlugins() { $front = Zend_Controller_Front::getInstance(); $front->registerPlugin(new Zend_Controller_Plugin_Maintenance()); $front->registerPlugin(new PageLayoutInitPlugin($this)); } }