extranet/application/models/CommandesErreur.php
2011-10-19 15:21:38 +00:00

19 lines
595 B
PHP

<?php
class Application_Model_CommandesErreur extends Zend_Db_Table_Abstract
{
protected $_name = 'commandes_erreur';
public function __construct()
{
if (empty($config) && Zend_Registry::isRegistered('configuration')){
$configuration = Zend_Registry::get('configuration');
$this->_db = Zend_Db::factory($configuration->databases->db->sdv1);
} elseif(empty($config)){
$dbConfig = new Zend_Config_Ini(APPLICATION_PATH.'/configs/configuration.ini', 'databases');
$this->_db = Zend_Db::factory($dbConfig->db->sdv1);
}
$this->_db->setFetchMode(Zend_Db::FETCH_OBJ);
}
}