예제 #1
0
 /**
  * Returns a new ChildPerformanceScoreQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildPerformanceScoreQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildPerformanceScoreQuery) {
         return $criteria;
     }
     $query = new ChildPerformanceScoreQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
예제 #2
0
파일: Routine.php 프로젝트: iuf/junia
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Routine is new, it will return
  * an empty collection; or if this Routine has previously
  * been saved, it will retrieve related PerformanceScores from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Routine.
  *
  * @param      Criteria $criteria optional Criteria object to narrow the query
  * @param      ConnectionInterface $con optional connection object
  * @param      string $joinBehavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return ObjectCollection|ChildPerformanceScore[] List of ChildPerformanceScore objects
  */
 public function getPerformanceScoresJoinJudge(Criteria $criteria = null, ConnectionInterface $con = null, $joinBehavior = Criteria::LEFT_JOIN)
 {
     $query = ChildPerformanceScoreQuery::create(null, $criteria);
     $query->joinWith('Judge', $joinBehavior);
     return $this->getPerformanceScores($query, $con);
 }
예제 #3
0
 /**
  * Updates PerformanceScores on Routine
  * 
  * @param mixed $id
  * @param mixed $data
  * @return PayloadInterface
  */
 public function updatePerformanceScores($id, $data)
 {
     // find
     $model = $this->get($id);
     if ($model === null) {
         return new NotFound(['message' => 'Routine not found.']);
     }
     // remove all relationships before
     PerformanceScoreQuery::create()->filterByRoutine($model)->delete();
     // add them
     $errors = [];
     foreach ($data as $entry) {
         if (!isset($entry['id'])) {
             $errors[] = 'Missing id for PerformanceScore';
         }
         $related = PerformanceScoreQuery::create()->findOneById($entry['id']);
         $model->addPerformanceScore($related);
     }
     if (count($errors) > 0) {
         return new NotValid(['errors' => $errors]);
     }
     // save and dispatch events
     $event = new RoutineEvent($model);
     $dispatcher = $this->getServiceContainer()->getDispatcher();
     $dispatcher->dispatch(RoutineEvent::PRE_PERFORMANCE_SCORES_UPDATE, $event);
     $dispatcher->dispatch(RoutineEvent::PRE_SAVE, $event);
     $rows = $model->save();
     $dispatcher->dispatch(RoutineEvent::POST_PERFORMANCE_SCORES_UPDATE, $event);
     $dispatcher->dispatch(RoutineEvent::POST_SAVE, $event);
     if ($rows > 0) {
         return Updated(['model' => $model]);
     }
     return NotUpdated(['model' => $model]);
 }
예제 #4
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 = ChildPerformanceScoreQuery::create();
     $criteria->add(PerformanceScoreTableMap::COL_ID, $this->id);
     return $criteria;
 }
예제 #5
0
 /**
  * Returns one PerformanceScore with the given id from cache
  * 
  * @param mixed $id
  * @return PerformanceScore|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 = PerformanceScoreQuery::create()->findOneById($id);
     $this->pool->set($id, $model);
     return $model;
 }
예제 #6
0
 /**
  * Performs an INSERT on the database, given a PerformanceScore or Criteria object.
  *
  * @param mixed               $criteria Criteria or PerformanceScore 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(PerformanceScoreTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from PerformanceScore object
     }
     // Set the correct dbName
     $query = PerformanceScoreQuery::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);
     });
 }
예제 #7
0
파일: Score.php 프로젝트: iuf/junia
 /**
  * Gets a single ChildPerformanceScore object, which is related to this object by a one-to-one relationship.
  *
  * @param  ConnectionInterface $con optional connection object
  * @return ChildPerformanceScore
  * @throws PropelException
  */
 public function getPerformanceScore(ConnectionInterface $con = null)
 {
     if ($this->singlePerformanceScore === null && !$this->isNew()) {
         $this->singlePerformanceScore = ChildPerformanceScoreQuery::create()->findPk($this->getPrimaryKey(), $con);
     }
     return $this->singlePerformanceScore;
 }