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 {
Layout_IndexController::
indexAction()
/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_Abstract::
render(
string)
/home/amarn/rits/modules/_layout/controllers/IndexController.php [71]
65 }
66 $this->view->language = strtolower(str_replace('_', '-', $application->language));
67 $this->view->description = isset($registry['page.description']) ? $registry['page.description'] : $this->_p->get('text.site.description');
68 $this->view->keywords = isset($registry['page.keywords']) ? $registry['page.keywords'] : $this->_p->get('text.site.keywords');
69
70 return $this->view->render('layout.phtml');
71 }
72
73 /**
74 * Configura layout
75 *
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 }
include()
/home/amarn/rits/templates/layout/album/layout.phtml [38]
32
33 <!-- title -->
34 <title><?=$this->title?></title>
35
36 <!-- meta -->
37 <? include('rits/templates/layout/default/default.head.meta.phtml') ?>
38
39 <!-- shortcut icon -->
40 <? include('rits/templates/layout/default/default.head.icon.phtml') ?>
41
42 <!-- styles -->
_errorhandler(
integer,
string,
string,
integer,
array)
/home/amarn/rits/templates/layout/album/layout.phtml [38]
32
33 <!-- title -->
34 <title><?=$this->title?></title>
35
36 <!-- meta -->
37 <? include('rits/templates/layout/default/default.head.meta.phtml') ?>
38
39 <!-- shortcut icon -->
40 <? include('rits/templates/layout/default/default.head.icon.phtml') ?>
41
42 <!-- styles -->