コード例 #1
0
ファイル: LeagueRef.php プロジェクト: scornfield/StrayAdmin
 /**
  * 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 = ChildLeagueRefQuery::create();
     $criteria->add(LeagueRefTableMap::COL_LEAGUE, $this->league);
     return $criteria;
 }
コード例 #2
0
ファイル: Teams.php プロジェクト: scornfield/StrayAdmin
 /**
  * Get the associated ChildLeagueRef object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildLeagueRef The associated ChildLeagueRef object.
  * @throws PropelException
  */
 public function getLeagueRef(ConnectionInterface $con = null)
 {
     if ($this->aLeagueRef === null && ($this->league !== "" && $this->league !== null)) {
         $this->aLeagueRef = ChildLeagueRefQuery::create()->findPk($this->league, $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->aLeagueRef->addTeamss($this);
            */
     }
     return $this->aLeagueRef;
 }