/** * Returns the number of related NagiosHostTemplateInheritance objects. * * @param Criteria $criteria * @param boolean $distinct * @param PropelPDO $con * @return int Count of related NagiosHostTemplateInheritance objects. * @throws PropelException */ public function countNagiosHostTemplateInheritances(Criteria $criteria = null, $distinct = false, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(NagiosHostPeer::DATABASE_NAME); } else { $criteria = clone $criteria; } if ($distinct) { $criteria->setDistinct(); } $count = null; if ($this->collNagiosHostTemplateInheritances === null) { if ($this->isNew()) { $count = 0; } else { $criteria->add(NagiosHostTemplateInheritancePeer::SOURCE_HOST, $this->id); $count = NagiosHostTemplateInheritancePeer::doCount($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return count of the collection. $criteria->add(NagiosHostTemplateInheritancePeer::SOURCE_HOST, $this->id); if (!isset($this->lastNagiosHostTemplateInheritanceCriteria) || !$this->lastNagiosHostTemplateInheritanceCriteria->equals($criteria)) { $count = NagiosHostTemplateInheritancePeer::doCount($criteria, $con); } else { $count = count($this->collNagiosHostTemplateInheritances); } } else { $count = count($this->collNagiosHostTemplateInheritances); } } return $count; }