Zend_Controller_Front::
dispatch()
/home/estruturalbrasil/estruturalbrasil.com.br/rits/_library/Rits/Application.php [139]
133 $front->registerPlugin(new Rits_Controller_Plugin_Settings());
134 $front->registerPlugin(new Rits_Controller_Plugin_Stylesheet());
135 $front->registerPlugin(new Rits_Controller_Plugin_Request());
136
137 // dispatch
138 $front->dispatch();
139 }
140
141 /**
142 * Returns the front controller
143 *
Imovel_DefaultController::
detailAction()
/home/estruturalbrasil/estruturalbrasil.com.br/rits/_library/Zend/Controller/Action.php [513]
507 // preDispatch() didn't change the action, so we can continue
508 if ($this->getInvokeArg('useCaseSensitiveActions') || in_array($action, $this->_classMethods)) {
509 if ($this->getInvokeArg('useCaseSensitiveActions')) {
510 trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
511 }
512 $this->$action();
513 } else {
514 $this->__call($action, array());
515 }
516 $this->postDispatch();
517 }