コード例 #1
0
 /**
  * Constructs our Dynamic DB settings, basically sets up our configurations
  * & constructs our parents functionality.
  *
  * @access public
  * 
  */
 public function __construct($env = null)
 {
     parent::__construct();
     $this->_schemas = array();
     if (null !== $env) {
         $this->_fixMan = new FixturesManager($env);
     } else {
         $this->_fixMan = new FixturesManager();
     }
     Zend_ConfigSettings::setUpConfig();
     $this->_general = Zend_Registry::get('general');
 }