Rits_Application::
run()
/home/frangobo/public_html/index.php [24]
18 // engines
19 require_once 'rits/_engine/errorhandler.php';
20 require_once 'rits/_engine/autoload.php';
21
22 // run application
23 Rits_Application::getInstance()->run();
24
25 } catch (Exception $e) {
26 Rits_Exception_Handler::handle($e);
Zend_Controller_Front::
dispatch()
/home/frangobo/rits/_library/Rits/Application.php [138]
132 $front->registerPlugin(new Rits_Controller_Plugin_Settings());
133 $front->registerPlugin(new Rits_Controller_Plugin_Stylesheet());
134 $front->registerPlugin(new Rits_Controller_Plugin_Request());
135
136 // dispatch
137 $front->dispatch();
138 }
139
140 /**
141 * Returns the front controller
142 *
Zend_Controller_Dispatcher_Standard::
dispatch(
object,
object)
/home/frangobo/rits/_library/Zend/Controller/Front.php [934]
928
929 /**
930 * Dispatch request
931 */
932 try {
933 $dispatcher->dispatch($this->_request, $this->_response);
934 } catch (Exception $e) {
935 if ($this->throwExceptions()) {
936 throw $e;
937 }
938 $this->_response->setException($e);
Zend_Controller_Action::
dispatch(
string)
/home/frangobo/rits/_library/Zend/Controller/Dispatcher/Standard.php [285]
279 if (empty($disableOb)) {
280 ob_start();
281 }
282
283 try {
284 $controller->dispatch($action);
285 } catch (Exception $e) {
286 // Clean output buffer on error
287 $curObLevel = ob_get_level();
288 if ($curObLevel > $obLevel) {
289 do {
Product_DefaultController::
listAction()
/home/frangobo/rits/_library/Zend/Controller/Action.php [503]
497 // preDispatch() didn't change the action, so we can continue
498 if ($this->getInvokeArg('useCaseSensitiveActions') || in_array($action, $this->_classMethods)) {
499 if ($this->getInvokeArg('useCaseSensitiveActions')) {
500 trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
501 }
502 $this->$action();
503 } else {
504 $this->__call($action, array());
505 }
506 $this->postDispatch();
507 }