/** * Get the associated ChildVerse object * * @param ConnectionInterface $con Optional Connection object. * @return ChildVerse The associated ChildVerse object. * @throws PropelException */ public function getVerse(ConnectionInterface $con = null) { if ($this->aVerse === null && $this->verse_id !== null) { $this->aVerse = ChildVerseQuery::create()->findPk($this->verse_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->aVerse->addPassages($this); */ } return $this->aVerse; }
/** * Returns the number of related Verse objects. * * @param Criteria $criteria * @param boolean $distinct * @param ConnectionInterface $con * @return int Count of related Verse objects. * @throws PropelException */ public function countVerses(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null) { $partial = $this->collVersesPartial && !$this->isNew(); if (null === $this->collVerses || null !== $criteria || $partial) { if ($this->isNew() && null === $this->collVerses) { return 0; } if ($partial && !$criteria) { return count($this->getVerses()); } $query = ChildVerseQuery::create(null, $criteria); if ($distinct) { $query->distinct(); } return $query->filterByBook($this)->count($con); } return count($this->collVerses); }
/** * Returns a new ChildVerseQuery object. * * @param string $modelAlias The alias of a model in the query * @param Criteria $criteria Optional Criteria to build the query from * * @return ChildVerseQuery */ public static function create($modelAlias = null, Criteria $criteria = null) { if ($criteria instanceof ChildVerseQuery) { return $criteria; } $query = new ChildVerseQuery(); if (null !== $modelAlias) { $query->setModelAlias($modelAlias); } if ($criteria instanceof Criteria) { $query->mergeWith($criteria); } return $query; }
/** * 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 = ChildVerseQuery::create(); $criteria->add(VerseTableMap::COL_ID, $this->id); return $criteria; }