/** * Returns the number of related CpStates objects. * * @param Criteria $criteria * @param boolean $distinct * @param PropelPDO $con * @return int Count of related CpStates objects. * @throws PropelException */ public function countCpStatess(Criteria $criteria = null, $distinct = false, PropelPDO $con = null) { if ($criteria === null) { $criteria = new Criteria(CpCountriesPeer::DATABASE_NAME); } else { $criteria = clone $criteria; } if ($distinct) { $criteria->setDistinct(); } $count = null; if ($this->collCpStatess === null) { if ($this->isNew()) { $count = 0; } else { $criteria->add(CpStatesPeer::COUNTRY_ID, $this->id); $count = CpStatesPeer::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(CpStatesPeer::COUNTRY_ID, $this->id); if (!isset($this->lastCpStatesCriteria) || !$this->lastCpStatesCriteria->equals($criteria)) { $count = CpStatesPeer::doCount($criteria, $con); } else { $count = count($this->collCpStatess); } } else { $count = count($this->collCpStatess); } } $this->lastCpStatesCriteria = $criteria; return $count; }