Rits_Application::
run()
/home/administ/new.administradores.com.br/public_html/index.php [24]
18 // engines
19 require_once 'rits/_engine/errorhandler.php';
20 require_once 'rits/_engine/autoload.php';
21
22 // run application
23 Rits_Application::getInstance()->run();
24 } catch (Exception $e) {
25 Rits_Exception_Handler::handle($e);
Rits_Controller_Plugin_Config::
preDispatch(
object)
/home/administ/new.administradores.com.br/rits/_library/Zend/Controller/Plugin/Broker.php [309]
303 */
304 public function preDispatch(Zend_Controller_Request_Abstract $request)
305 {
306 foreach ($this->_plugins as $plugin) {
307 try {
308 $plugin->preDispatch($request);
309 } catch (Exception $e) {
310 if (Zend_Controller_Front::getInstance()->throwExceptions()) {
311 throw $e;
312 } else {
313 $this->getResponse()->setException($e);
Application_Default::
getCatCircuito()
/home/administ/new.administradores.com.br/rits/config/global.php [39]
33 Application_Default::getHighlightTemplates();
34 Application_Default::getEditorias();
35 Application_Default::getCatInterview();
36 Application_Default::getCatPublication(1);
37 Application_Default::getCatCursoOnline();
38 Application_Default::getCatCircuito();
39 Application_Default::getCatCurso();
40 Application_Default::getCatVideo();
41 Application_Default::getCatCompany();
42 Application_Default::getCatAcademics();
43 Application_Default::getCatCommunity();
Rits_Database_Adapter_Pgsql_Connection::
prepare(
string)
/home/administ/new.administradores.com.br/rits/_library/Application/Default.php [524]
518 // date
519 $sql_restrictions .= ' AND (CAT_DT_PUBLISH <= :CAT_DT_PUBLISH) AND (CAT_DT_UNPUBLISH >= :CAT_DT_UNPUBLISH OR CAT_DT_UNPUBLISH IS NULL)';
520
521 $sql = "SELECT $sql_fields FROM $sql_table WHERE $sql_restrictions $sql_orderby";
522
523 $stmt = $db->prepare($sql);
524
525 $stmt->setString(':CAT_DT_PUBLISH', Rits_Date::date());
526 $stmt->setString(':CAT_DT_UNPUBLISH', Rits_Date::date());
527
528 $rs = $stmt->query();
PDO::
__construct(
string,
string,
string,
NULL)
/home/administ/new.administradores.com.br/rits/_library/Rits/Database/Connection.php [108]
102 // get the dsn first, because some adapters alter the $_pdoType
103 $dsn = $this->_dsn();
104
105 try {
106 // creates the PDO object
107 $this->_connection = new PDO($dsn, $this->_config['user'], $this->_config['password'], isset($this->_config['driver_options']) ? $this->_config['driver_options'] : null);
108
109 // set the PDO connection to perform case-folding on array keys, or not
110 $this->_connection->setAttribute(PDO::ATTR_CASE, $this->_caseFolding);
111
112 // always use exceptions