Beispiel #1
0
 /**
  * Returns the number of related Zone objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related Zone objects.
  * @throws     PropelException
  */
 public function countZonesRelatedByParentZone(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(ZonePeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collZonesRelatedByParentZone === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(ZonePeer::PARENT_ZONE, $this->id);
             $count = ZonePeer::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(ZonePeer::PARENT_ZONE, $this->id);
             if (!isset($this->lastZoneRelatedByParentZoneCriteria) || !$this->lastZoneRelatedByParentZoneCriteria->equals($criteria)) {
                 $count = ZonePeer::doCount($criteria, $con);
             } else {
                 $count = count($this->collZonesRelatedByParentZone);
             }
         } else {
             $count = count($this->collZonesRelatedByParentZone);
         }
     }
     return $count;
 }
Beispiel #2
0
 public function executeIndex(sfWebRequest $request)
 {
     $this->zone_list = ZonePeer::doSelectRoot();
     $this->zone_total_count = ZonePeer::doCount(new Criteria());
     $this->recursion = ZonePeer::getMaximumRecursion();
 }