コード例 #1
0
ファイル: Companies.php プロジェクト: nirkbirk/site
 /**
  * Returns the number of related Games objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      ConnectionInterface $con
  * @return int             Count of related Games objects.
  * @throws PropelException
  */
 public function countGamessRelatedByDeveloperId(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collGamessRelatedByDeveloperIdPartial && !$this->isNew();
     if (null === $this->collGamessRelatedByDeveloperId || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collGamessRelatedByDeveloperId) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getGamessRelatedByDeveloperId());
         }
         $query = ChildGamesQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByCompaniesRelatedByDeveloperId($this)->count($con);
     }
     return count($this->collGamessRelatedByDeveloperId);
 }
コード例 #2
0
ファイル: GamesQuery.php プロジェクト: nirkbirk/site
 /**
  * Returns a new ChildGamesQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildGamesQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildGamesQuery) {
         return $criteria;
     }
     $query = new ChildGamesQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
コード例 #3
0
ファイル: UserReviews.php プロジェクト: nirkbirk/site
 /**
  * Get the associated ChildGames object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildGames The associated ChildGames object.
  * @throws PropelException
  */
 public function getGames(ConnectionInterface $con = null)
 {
     if ($this->aGames === null && ($this->game_id !== "" && $this->game_id !== null)) {
         $this->aGames = ChildGamesQuery::create()->findPk($this->game_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->aGames->addUserReviewss($this);
            */
     }
     return $this->aGames;
 }
コード例 #4
0
ファイル: Games.php プロジェクト: nirkbirk/site
 /**
  * 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 = ChildGamesQuery::create();
     $criteria->add(GamesTableMap::COL_ID, $this->id);
     return $criteria;
 }