18 lines
547 B
PHP
18 lines
547 B
PHP
<?php
|
|
class Application_Model_CommandesPieces extends Zend_Db_Table_Abstract
|
|
{
|
|
protected $_name = 'commandes_pieces';
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
}
|