コード例 #1
0
ファイル: SkillDomainTrait.php プロジェクト: gossi/trixionary
 /**
  * Internal update mechanism of Groups on Skill
  * 
  * @param Skill $model
  * @param mixed $data
  */
 protected function doUpdateGroups(Skill $model, $data)
 {
     // remove all relationships before
     SkillGroupQuery::create()->filterBySkill($model)->delete();
     // add them
     $errors = [];
     foreach ($data as $entry) {
         if (!isset($entry['id'])) {
             $errors[] = 'Missing id for Group';
         } else {
             $related = GroupQuery::create()->findOneById($entry['id']);
             $model->addGroup($related);
         }
     }
     if (count($errors) > 0) {
         throw new ErrorsException($errors);
     }
 }
コード例 #2
0
ファイル: GroupDomainTrait.php プロジェクト: gossi/trixionary
 /**
  * Returns one Group with the given id from cache
  * 
  * @param mixed $id
  * @return Group|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 = GroupQuery::create()->findOneById($id);
     $this->pool->set($id, $model);
     return $model;
 }
コード例 #3
0
ファイル: Group.php プロジェクト: gossi/trixionary
 /**
  * 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 = ChildGroupQuery::create();
     $criteria->add(GroupTableMap::COL_ID, $this->id);
     return $criteria;
 }
コード例 #4
0
ファイル: GroupQuery.php プロジェクト: gossi/trixionary
 /**
  * Returns a new ChildGroupQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildGroupQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildGroupQuery) {
         return $criteria;
     }
     $query = new ChildGroupQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
コード例 #5
0
ファイル: SkillGroupQuery.php プロジェクト: gossi/trixionary
 /**
  * Finds the related Group objects and keep them for later
  *
  * @param ConnectionInterface $con A connection object
  */
 protected function findRelatedGroupSkillCounts($con)
 {
     $criteria = clone $this;
     if ($this->useAliasInSQL) {
         $alias = $this->getModelAlias();
         $criteria->removeAlias($alias);
     } else {
         $alias = '';
     }
     $this->groupSkillCounts = \gossi\trixionary\model\GroupQuery::create()->joinSkillGroup($alias)->mergeWith($criteria)->find($con);
 }
コード例 #6
0
ファイル: Sport.php プロジェクト: gossi/trixionary
 /**
  * Returns the number of related Group objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      ConnectionInterface $con
  * @return int             Count of related Group objects.
  * @throws PropelException
  */
 public function countGroups(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collGroupsPartial && !$this->isNew();
     if (null === $this->collGroups || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collGroups) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getGroups());
         }
         $query = ChildGroupQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterBySport($this)->count($con);
     }
     return count($this->collGroups);
 }
コード例 #7
0
ファイル: SkillGroup.php プロジェクト: gossi/trixionary
 /**
  * Get the associated ChildGroup object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildGroup The associated ChildGroup object.
  * @throws PropelException
  */
 public function getGroup(ConnectionInterface $con = null)
 {
     if ($this->aGroup === null && $this->group_id !== null) {
         $this->aGroup = ChildGroupQuery::create()->findPk($this->group_id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aGroup->addSkillGroups($this);
            */
     }
     return $this->aGroup;
 }
コード例 #8
0
ファイル: GroupTableMap.php プロジェクト: gossi/trixionary
 /**
  * Performs an INSERT on the database, given a Group or Criteria object.
  *
  * @param mixed               $criteria Criteria or Group 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(GroupTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from Group object
     }
     if ($criteria->containsKey(GroupTableMap::COL_ID) && $criteria->keyContainsValue(GroupTableMap::COL_ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . GroupTableMap::COL_ID . ')');
     }
     // Set the correct dbName
     $query = GroupQuery::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);
     });
 }