Zend_Controller_Front::
dispatch()
/home/miranda/miranda.com.br/rits/_library/Rits/Application.php [139]
133 $front->registerPlugin(new Rits_Controller_Plugin_Settings());
134 $front->registerPlugin(new Rits_Controller_Plugin_Stylesheet());
135 $front->registerPlugin(new Rits_Controller_Plugin_Request());
136
137 // dispatch
138 $front->dispatch();
139 }
140
141 /**
142 * Returns the front controller
143 *
Zend_Controller_Dispatcher_Standard::
dispatch(
object,
object)
/home/miranda/miranda.com.br/rits/_library/Zend/Controller/Front.php [954]
948
949 /**
950 * Dispatch request
951 */
952 try {
953 $dispatcher->dispatch($this->_request, $this->_response);
954 } catch (Exception $e) {
955 if ($this->throwExceptions()) {
956 throw $e;
957 }
958 $this->_response->setException($e);
Layout_IndexController::
indexAction()
/home/miranda/miranda.com.br/rits/_library/Zend/Controller/Action.php [516]
510 // preDispatch() didn't change the action, so we can continue
511 if ($this->getInvokeArg('useCaseSensitiveActions') || in_array($action, $this->_classMethods)) {
512 if ($this->getInvokeArg('useCaseSensitiveActions')) {
513 trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
514 }
515 $this->$action();
516 } else {
517 $this->__call($action, array());
518 }
519 }
520 $this->postDispatch();
Zend_View_Abstract::
render(
string)
/home/miranda/miranda.com.br/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'] : '';
68 $this->view->keywords = isset($registry['page.keywords']) ? $registry['page.keywords'] : '';
69
70 return $this->view->render('layout.phtml');
71 }
72
73 /**
74 * Configura layout
75 *
Zend_View::
_run(
string)
/home/miranda/miranda.com.br/rits/_library/Zend/View/Abstract.php [888]
882 // find the script file name using the parent private method
883 $this->_file = $this->_script($name);
884 unset($name); // remove $name from local scope
885
886 ob_start();
887 $this->_run($this->_file);
888
889 return $this->_filter(ob_get_clean()); // filter output
890 }
891
892 /**
_errorhandler(
integer,
string,
string,
integer,
array)
/home/miranda/miranda.com.br/rits/templates/layout/temas/layout.phtml [92]
86 <? } ?>
87 </div>
88 <? } else { ?>
89 <div id="lay-faixa">
90 <div class="item-microsoft-int"><?=Rits_Util_Xhtml::img(PATH_IMGS.'default/tema-microsoft/img_int_'.$request->getParam('tipo_busca').'.jpg')?></div>
91 <div class="item-microsoft-int text-microsoft-int" style="padding-top: <?=$padding_top?>px"><?=Rits_Util_Xhtml::img(PATH_IMGS.'default/tema-microsoft/text_int_'.$request->getParam('tipo_busca').'.png')?></div>
92 </div>
93 <? } ?>
94 </div>
95
96 <? if(false && isset($registry['rs_highlight']) && $registry['rs_highlight']->getCount()) { ?>