Zend_Controller_Front::
dispatch()
/home/storage/1/11/88/ligacontraocancer3/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 *
Home_DefaultController::
indexAction()
/home/storage/1/11/88/ligacontraocancer3/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 }
Rits_Database_Adapter_Pgsql_Connection::
prepare(
string)
/home/storage/1/11/88/ligacontraocancer3/rits/modules/home/controllers/DefaultController.php [61]
55 // date
56 $sql_restrictions .= ' AND (NWS_DT_PUBLISH <= :NWS_DT_PUBLISH) AND (NWS_DT_UNPUBLISH >= :NWS_DT_UNPUBLISH OR NWS_DT_UNPUBLISH IS NULL)';
57
58 $sql = "SELECT $sql_fields FROM $sql_table WHERE $sql_restrictions $sql_orderby LIMIT 8";
59
60 $stmt = $db->prepare($sql);
61
62 $stmt->setString(':NWS_LANGUAGE', Rits_Locale::getInstance()->getApplication());
63
64 $stmt->setString(':NWS_DT_PUBLISH', Rits_Date::date());
65 $stmt->setString(':NWS_DT_UNPUBLISH', Rits_Date::date());
PDO::
__construct(
string,
string,
string,
NULL)
/home/storage/1/11/88/ligacontraocancer3/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