Exemplo n.º 1
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's phpname (e.g. 'AuthorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = UserRideMapPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setUserRideId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setCoordOrder($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setLat($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setLong($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setElevation($arr[$keys[4]]);
     }
 }
Exemplo n.º 2
0
 /**
 * Retrieve object using using composite pkey values.
 * @param      int $user_ride_id
   @param      int $coord_order
   
 * @param      PropelPDO $con
 * @return     UserRideMap
 */
 public static function retrieveByPK($user_ride_id, $coord_order, PropelPDO $con = null)
 {
     $key = serialize(array((string) $user_ride_id, (string) $coord_order));
     if (null !== ($obj = UserRideMapPeer::getInstanceFromPool($key))) {
         return $obj;
     }
     if ($con === null) {
         $con = Propel::getConnection(UserRideMapPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $criteria = new Criteria(UserRideMapPeer::DATABASE_NAME);
     $criteria->add(UserRideMapPeer::USER_RIDE_ID, $user_ride_id);
     $criteria->add(UserRideMapPeer::COORD_ORDER, $coord_order);
     $v = UserRideMapPeer::doSelect($criteria, $con);
     return !empty($v) ? $v[0] : null;
 }
Exemplo n.º 3
0
 /**
  * Returns the number of related UserRideMap objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      PropelPDO $con
  * @return     int Count of related UserRideMap objects.
  * @throws     PropelException
  */
 public function countUserRideMaps(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(UserRidesPeer::DATABASE_NAME);
     } else {
         $criteria = clone $criteria;
     }
     if ($distinct) {
         $criteria->setDistinct();
     }
     $count = null;
     if ($this->collUserRideMaps === null) {
         if ($this->isNew()) {
             $count = 0;
         } else {
             $criteria->add(UserRideMapPeer::USER_RIDE_ID, $this->user_ride_id);
             $count = UserRideMapPeer::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(UserRideMapPeer::USER_RIDE_ID, $this->user_ride_id);
             if (!isset($this->lastUserRideMapCriteria) || !$this->lastUserRideMapCriteria->equals($criteria)) {
                 $count = UserRideMapPeer::doCount($criteria, $con);
             } else {
                 $count = count($this->collUserRideMaps);
             }
         } else {
             $count = count($this->collUserRideMaps);
         }
     }
     $this->lastUserRideMapCriteria = $criteria;
     return $count;
 }
Exemplo n.º 4
0
 public function executeElevation()
 {
     $userId = sfContext::getInstance()->getUser()->getAttribute('subscriber_id', null, 'subscriber');
     $this->elevationChart = null;
     $rideId = $this->getRequestParameter('rideId');
     //sfContext::getInstance()->getLogger()->info('$$$$$$$$CHARTRIDEID '.$rideId);
     if ($rideId) {
         //sfContext::getInstance()->getLogger()->info('$$$$$$$$CHARTRIDEID have rideId');
         //get all of the map points and make sure we have lat/long
         $c = new Criteria();
         $c->add(UserRideMapPeer::USER_RIDE_ID, $rideId);
         $mapPoints = UserRideMapPeer::doSelect($c);
         if ($mapPoints) {
             //	sfContext::getInstance()->getLogger()->info('$$$$$$$$CHARTRIDEID have mapPoints');
             foreach ($mapPoints as $mp) {
                 //	sfContext::getInstance()->getLogger()->info('$$$$$$$$CHARTRIDEID have point');
                 if (!$mp->getElevation()) {
                     //	sfContext::getInstance()->getLogger()->info('$$$$$$$$CHARTRIDEID no elevation');
                     $mp->setElevation($this->lookupElevation($mp->getLat(), $mp->getLong()));
                     $mp->save();
                 }
             }
             $this->elevationChart = $this->createElevationGraph($userId, $rideId);
         }
     }
 }