Example #1
0
 /**
  * Add a database to the list and sets the AppData property to this
  * AppData
  *
  * @param db the database to add
  */
 public function addDatabase($db)
 {
     if ($db instanceof Database) {
         $db->setAppData($this);
         if ($db->getPlatform() === null) {
             $db->setPlatform($this->platform);
         }
         $this->dbList[] = $db;
         return $db;
     } else {
         // XML attributes array / hash
         $d = new Database();
         $d->loadFromXML($db);
         return $this->addDatabase($d);
         // calls self w/ different param type
     }
 }
Example #2
0
 protected function cloneDatabase($db)
 {
     $attributes = array('name' => $db->getName(), 'baseClass' => $db->getBaseClass(), 'basePeer' => $db->getBasePeer(), 'defaultIdMethod' => $db->getDefaultIdMethod(), 'defaultPhpNamingMethod' => $db->getDefaultPhpNamingMethod(), 'defaultTranslateMethod' => $db->getDefaultTranslateMethod());
     $clone = new Database();
     $clone->loadFromXML($attributes);
     return $clone;
 }
Example #3
0
 /**
  * Add a database to the list and sets the AppData property to this
  * AppData
  *
  * @param      db the database to add
  */
 public function addDatabase($db)
 {
     if ($db instanceof Database) {
         $db->setAppData($this);
         if ($db->getPlatform() === null) {
             if ($config = $this->getGeneratorConfig()) {
                 $pf = $config->getConfiguredPlatform(null, $db->getName());
                 $db->setPlatform($pf ? $pf : $this->platform);
             } else {
                 $db->setPlatform($this->platform);
             }
         }
         $this->dbList[] = $db;
         return $db;
     } else {
         // XML attributes array / hash
         $d = new Database();
         $d->setAppData($this);
         $d->loadFromXML($db);
         return $this->addDatabase($d);
         // calls self w/ different param type
     }
 }