/** * Returns a new ChildBibleQuery object. * * @param string $modelAlias The alias of a model in the query * @param Criteria $criteria Optional Criteria to build the query from * * @return ChildBibleQuery */ public static function create($modelAlias = null, Criteria $criteria = null) { if ($criteria instanceof ChildBibleQuery) { return $criteria; } $query = new ChildBibleQuery(); if (null !== $modelAlias) { $query->setModelAlias($modelAlias); } if ($criteria instanceof Criteria) { $query->mergeWith($criteria); } return $query; }
/** * Get the associated ChildBible object * * @param ConnectionInterface $con Optional Connection object. * @return ChildBible The associated ChildBible object. * @throws PropelException */ public function getBible(ConnectionInterface $con = null) { if ($this->aBible === null && $this->bible_id !== null) { $this->aBible = ChildBibleQuery::create()->findPk($this->bible_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->aBible->addPassages($this); */ } return $this->aBible; }
/** * 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 = ChildBibleQuery::create(); $criteria->add(BibleTableMap::COL_ID, $this->id); return $criteria; }