Exemple #1
0
 public function saveFeaturevectorList($con = null)
 {
     if (!$this->isValid()) {
         throw $this->getErrorSchema();
     }
     if (!isset($this->widgetSchema['featurevector_list'])) {
         // somebody has unset this widget
         return;
     }
     if (null === $con) {
         $con = $this->getConnection();
     }
     $c = new Criteria();
     $c->add(FeaturevectorPeer::TRACK_ID, $this->object->getPrimaryKey());
     FeaturevectorPeer::doDelete($c, $con);
     $values = $this->getValue('featurevector_list');
     if (is_array($values)) {
         foreach ($values as $value) {
             $obj = new Featurevector();
             $obj->setTrackId($this->object->getPrimaryKey());
             $obj->setFeaturevectortypeId($value);
             $obj->save();
         }
     }
 }
Exemple #2
0
 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param      PropelPDO $con
  * @return     int The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws     PropelException
  * @see        save()
  */
 protected function doSave(PropelPDO $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their coresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aFeaturevector !== null) {
             if ($this->aFeaturevector->isModified() || $this->aFeaturevector->isNew()) {
                 $affectedRows += $this->aFeaturevector->save($con);
             }
             $this->setFeaturevector($this->aFeaturevector);
         }
         if ($this->aDistancetype !== null) {
             if ($this->aDistancetype->isModified() || $this->aDistancetype->isNew()) {
                 $affectedRows += $this->aDistancetype->save($con);
             }
             $this->setDistancetype($this->aDistancetype);
         }
         if ($this->aSmafejobAddfile !== null) {
             if ($this->aSmafejobAddfile->isModified() || $this->aSmafejobAddfile->isNew()) {
                 $affectedRows += $this->aSmafejobAddfile->save($con);
             }
             $this->setSmafejobAddfile($this->aSmafejobAddfile);
         }
         // If this object has been modified, then save it to the database.
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = DistancejobPeer::doInsert($this, $con);
                 $affectedRows += 1;
                 // we are assuming that there is only 1 row per doInsert() which
                 // should always be true here (even though technically
                 // BasePeer::doInsert() can insert multiple rows).
                 $this->setNew(false);
             } else {
                 $affectedRows += DistancejobPeer::doUpdate($this, $con);
             }
             $this->resetModified();
             // [HL] After being saved an object is no longer 'modified'
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }