コード例 #1
0
 /**
  * Returns a new ChildCardRefQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildCardRefQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildCardRefQuery) {
         return $criteria;
     }
     $query = new ChildCardRefQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
コード例 #2
0
ファイル: CardRef.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 = ChildCardRefQuery::create();
     $criteria->add(CardRefTableMap::COL_CARD, $this->card);
     return $criteria;
 }
コード例 #3
0
ファイル: Players.php プロジェクト: scornfield/StrayAdmin
 /**
  * Get the associated ChildCardRef object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildCardRef The associated ChildCardRef object.
  * @throws PropelException
  */
 public function getCardRef(ConnectionInterface $con = null)
 {
     if ($this->aCardRef === null && $this->card !== null) {
         $this->aCardRef = ChildCardRefQuery::create()->findPk($this->card, $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->aCardRef->addPlayerss($this);
            */
     }
     return $this->aCardRef;
 }