Rits_Application::
run(
array)
/home/camara01/public_html/index.php [40]
35 // options
36 $options = array("mode" => "production");
37
38 // application
39 $application = Rits_Application::getInstance();
40 $application->run($options);
41
42 } catch (Exception $e) {
43 Rits_Exception_Handler::getInstance()->handle($e);
44 }
Rits_Application::
dispatch()
/home/camara01/_library/Rits/Application.php [225]
220
221 // configuration
222 $this->loadConfiguration();
223
224 // dispatch
225 $this->dispatch();
226 }
227
228 /**
229 * Loads options
230 *
Zend_Controller_Front::
dispatch()
/home/camara01/_library/Rits/Application.php [295]
290 // adds module
291 $front->addControllerDirectory($module_dir, $module_name);
292 }
293
294 // dispatch
295 $front->dispatch();
296 }
297
298 /**
299 * Returns the front controller
300 *
Zend_Controller_Dispatcher_Standard::
dispatch(
object,
object)
/home/camara01/_library/Zend/Controller/Front.php [914]
909
910 /**
911 * Dispatch request
912 */
913 try {
914 $dispatcher->dispatch($this->_request, $this->_response);
915 } catch (Exception $e) {
916 if ($this->throwExceptions()) {
917 throw $e;
918 }
919 $this->_response->setException($e);