Zend_Controller_Front::
dispatch()
/home/storage/8/87/7b/vdgcine/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/storage/8/87/7b/vdgcine/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);
Blog_DefaultController::
listAction()
/home/storage/8/87/7b/vdgcine/rits/_library/Zend/Controller/Action.php [513]
507 // preDispatch() didn't change the action, so we can continue
508 if ($this->getInvokeArg('useCaseSensitiveActions') || in_array($action, $this->_classMethods)) {
509 if ($this->getInvokeArg('useCaseSensitiveActions')) {
510 trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
511 }
512 $this->$action();
513 } else {
514 $this->__call($action, array());
515 }
516 $this->postDispatch();
517 }
Rits_Database_PreparedStatement::
query()
/home/storage/8/87/7b/vdgcine/rits/modules/blog/controllers/DefaultController.php [197]
191
192 $stmt->setString(':CAT_FK_TYPE', $form->getPK());
193
194 $stmt->setString(':CAT_LANGUAGE', Rits_Locale::getInstance()->toString());
195
196 $rs = $stmt->query();
197
198 if($rs->getCount()) {
199 $a_category = array();
200 while($rs->next()) {
201 $a_category[] = $rs->getRow();