Rits_Application::
run()
/home/storage/3/b1/5f/juristas/public_html/index.php [23]
17 // engines
18 require_once 'rits/_engine/errorhandler.php';
19 require_once 'rits/_engine/autoload.php';
20
21 // run application
22 Rits_Application::getInstance()->run();
23
24 } catch (Exception $e) {
25 Rits_Exception_Handler::handle($e);
Zend_Controller_Front::
dispatch()
/home/storage/3/b1/5f/juristas/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/storage/3/b1/5f/juristas/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);
Denuncia_DefaultController::
detailAction()
/home/storage/3/b1/5f/juristas/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 }
Zend_View::
_run(
string)
/home/storage/3/b1/5f/juristas/rits/_library/Zend/View/Abstract.php [787]
781 // find the script file name using the parent private method
782 $this->_file = $this->_script($name);
783 unset($name); // remove $name from local scope
784
785 ob_start();
786 $this->_run($this->_file);
787
788 return $this->_filter(ob_get_clean()); // filter output
789 }
790
791 /**