Rits_Application::
run()
/home/amarn/public_html/index.php [33]
27 include('espera.php');
28 exit;
29 }*/
30
31 // run application
32 Rits_Application::getInstance()->run();
33
34 } catch (Exception $e) {
35 Rits_Exception_Handler::handle($e);
Rits_Application::
dispatch()
/home/amarn/rits/_library/Rits/Application.php [105]
99 * @return void
100 */
101 public function run ()
102 {
103 // dispatch
104 $this->dispatch();
105 }
106
107 /**
108 * Dispatches the front controller
109 *
Zend_Controller_Front::
dispatch()
/home/amarn/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/amarn/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/amarn/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 {
Calendario_DefaultController::
listAction()
/home/amarn/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/amarn/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 /**
include(
string)
/home/amarn/rits/_library/Zend/View.php [107]
101 protected function _run()
102 {
103 if ($this->_useViewStream && $this->useStreamWrapper()) {
104 include 'zend.view://' . func_get_arg(0);
105 } else {
106 include func_get_arg(0);
107 }
108 }
eval()
/home/amarn/rits/modules/calendario/views/displayDefaultList.phtml [80]
74 echo Rits_Util_Xhtml::img(PATH_IMGS.'default/divisoria.gif');
75 echo '</div>';
76
77
78 echo '<div style="padding-top: 10px;">';
79 echo Rits_Util_Xhtml::link(eval($module->getLink('enunciados.list')), Rits_Util_Xhtml::img(PATH_IMGS.'default/button_enunciados.gif'), array('style'=>'margin-right: 5px;'));
80 echo Rits_Util_Xhtml::link(eval($module->getLink('atas.list')), Rits_Util_Xhtml::img(PATH_IMGS.'default/button_atas.gif'), array('style'=>'margin-right: 5px;'));
81 echo Rits_Util_Xhtml::link(eval($module->getLink('pautas.list')), Rits_Util_Xhtml::img(PATH_IMGS.'default/button_pautas.gif'), array('style'=>'margin-right: 5px;'));
82 echo Rits_Util_Xhtml::link(eval($module->getLink('calendarios.list')), Rits_Util_Xhtml::img(PATH_IMGS.'default/button_calendario.gif'));
83 echo '</div>';
84