Chris,

I'm having problems with module configs too, but I'm guessing that your
function name should be "_initRouter()".  Are you seeing your error message
logged?  If your logger is working, log your routes before you send them to
the router to verify they're being read properly.

HTH.


chrisweb wrote:
> 
> Hello,
> 
> I have another problem related to the bootsrap, i have created a main
> bootsrap which uses the db resource to setup database, then i created two
> modules:
> 
> application
> bootstrap (the application bootstrap)
> -modules
> --articles
> ---bootstrap (the articles module bootstrap)
> --categories
> ---bootstrap (the categories module bootstrap)
> 
> i want to create a translations.tmx a config.ini and a routes.xml file for
> each module, i use zend_application an wanted to create a bootstrap for
> each
> module, then the module bootstrap should setup the module routes,
> translations and use the module config file ...
> 
> i tried to implement the routes but this doesnt work, heres my code:
> 
> <?php
> 
> class Categories_Bootstrap extends Zend_Application_Module_Bootstrap {
> 
>     public $frontController;
> 
>     // ROUTES
>     protected function _initCategoriesRoutes() {
> 
>         $logger = Zend_Registry::get('Logger');
>         $errorMessage = 'categories bootstrap called';
>         $logger->log($errorMessage, Zend_Log::ERR);
> 
>         //ROUTING
>         //$this->bootstrap('frontController');
>         $front = Zend_Controller_Front::getInstance();
>         //$router = $this->frontController->getRouter();
>         $router = $front->getRouter();
>         $routes = new
> Zend_Config_Xml(APPLICATION_PATH.'/categories/configs/routes.xml',
> APPLICATION_ENVIRONMENT);
>         $router->addConfig($routes);
>         //$this->frontController->setRouter($router);
>         $front->setRouter($router);
> 
>     }
> 
> }
> 
> does somebody know why it doesnt work?
> 
> chris
> 
> 

-- 
View this message in context: 
http://www.nabble.com/module-bootstrap-doesnt-load-module-routes-tp23685377p23688994.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to