示例#1
0
 /**
  * Internal update mechanism of FunctionPhases on Skill
  * 
  * @param Skill $model
  * @param mixed $data
  */
 protected function doUpdateFunctionPhases(Skill $model, $data)
 {
     // remove all relationships before
     FunctionPhaseQuery::create()->filterBySkill($model)->delete();
     // add them
     $errors = [];
     foreach ($data as $entry) {
         if (!isset($entry['id'])) {
             $errors[] = 'Missing id for FunctionPhase';
         } else {
             $related = FunctionPhaseQuery::create()->findOneById($entry['id']);
             $model->addFunctionPhase($related);
         }
     }
     if (count($errors) > 0) {
         throw new ErrorsException($errors);
     }
 }
示例#2
0
 /**
  * Gets a single ChildFunctionPhase object, which is related to this object by a one-to-one relationship.
  *
  * @param  ConnectionInterface $con optional connection object
  * @return ChildFunctionPhase
  * @throws PropelException
  */
 public function getFunctionPhase(ConnectionInterface $con = null)
 {
     if ($this->singleFunctionPhase === null && !$this->isNew()) {
         $this->singleFunctionPhase = ChildFunctionPhaseQuery::create()->findPk($this->getPrimaryKey(), $con);
     }
     return $this->singleFunctionPhase;
 }
示例#3
0
 /**
  * Builds a Criteria object containing the primary key for this object.
  *
  * Unlike buildCriteria() this method includes the primary key values regardless
  * of whether or not they have been modified.
  *
  * @throws LogicException if no primary key is defined
  *
  * @return Criteria The Criteria object containing value(s) for primary key(s).
  */
 public function buildPkeyCriteria()
 {
     $criteria = ChildFunctionPhaseQuery::create();
     $criteria->add(FunctionPhaseTableMap::COL_ID, $this->id);
     return $criteria;
 }
 /**
  * Returns one FunctionPhase with the given id from cache
  * 
  * @param mixed $id
  * @return FunctionPhase|null
  */
 protected function get($id)
 {
     if ($this->pool === null) {
         $this->pool = new Map();
     } else {
         if ($this->pool->has($id)) {
             return $this->pool->get($id);
         }
     }
     $model = FunctionPhaseQuery::create()->findOneById($id);
     $this->pool->set($id, $model);
     return $model;
 }
 /**
  * Performs an INSERT on the database, given a FunctionPhase or Criteria object.
  *
  * @param mixed               $criteria Criteria or FunctionPhase object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *                         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(FunctionPhaseTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from FunctionPhase object
     }
     // Set the correct dbName
     $query = FunctionPhaseQuery::create()->mergeWith($criteria);
     // use transaction because $criteria could contain info
     // for more than one table (I guess, conceivably)
     return $con->transaction(function () use($con, $query) {
         return $query->doInsert($con);
     });
 }