I'm defining a partner through a route based on the url e.g.

my.domain.com/:partner/:controller/:action

Now I want load the config file, databases for the partner before the front controller is called.

  • Where do I locate this code?
  • How do I get/set the variables/db, that they are later available in the controller?

I know I could do this through a controller helper but I guess this is not the best point to do it?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Yes, a controller plugin is the way I'd do it:

class MyPlugin extends Zend_Controller_Plugin_Abstract
{
    public function routeShutdown(Zend_Controller_Request_Abstract $request)
    {
        switch($request->getParam('partner')) {
            //... do something based on the possibility
        }
    }
}
link|improve this answer
Whats the difference between dispatchLoopStartup and preDispatch? – Manuel Jul 25 '11 at 18:56
devzone.zend.com/article/11978 & devzone.zend.com/article/3372 That said, i just reread your question and this will occur after "the fornt controller is called". In fact, it is impossible to do what you want to do before "the fornt controller is called" b/c the parram is coming from the router and the router comes from the front controller. I think what you meant is "before the request is dispatched" in which case case the earliest hock you could use would be the routeShutdown, plus you know that this is only to occur once & preDispatch can occur multiple times. updating answer – Fatmuemoo Jul 25 '11 at 20:03
I just put it into preDispatch and this works totally fine for me. Thx! – Manuel Aug 2 '11 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.