Example #1
0
 public static function getUserBikesWithAll()
 {
     $bikeArray = UserBikesPeer::getUserBikes();
     $shelfItem = new UserBikes();
     $shelfItem->setBikeMake("(All Bikes)");
     array_push($bikeArray, $shelfItem);
     return $bikeArray;
 }
Example #2
0
 public function executeAdd()
 {
     if ($this->getRequest()->getMethod() == sfRequest::POST) {
         $userId = sfContext::getInstance()->getUser()->getAttribute('subscriber_id', null, 'subscriber');
         if ($userId) {
             $userBike = new UserBikes();
             $userBike->setBikeYear($this->getRequestParameter('bike_year'));
             $userBike->setBikeModel($this->getRequestParameter('bike_model'));
             $userBike->setBikeMake($this->getRequestParameter('bike_make'));
             $userBike->setDescription($this->getRequestParameter('description'));
             $userBike->setUserId($userId);
             $userBike->save();
             return $this->redirect('userbike/index');
         }
     }
     return sfView::SUCCESS;
 }
 /**
  * Declares an association between this object and a UserBikes object.
  *
  * @param      UserBikes $v
  * @return     UserEquipement The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setUserBikes(UserBikes $v = null)
 {
     if ($v === null) {
         $this->setBikeId(NULL);
     } else {
         $this->setBikeId($v->getUserBikeId());
     }
     $this->aUserBikes = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the UserBikes object, it will not be re-added.
     if ($v !== null) {
         $v->addUserEquipement($this);
     }
     return $this;
 }
Example #4
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      UserBikes $value A UserBikes object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(UserBikes $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getUserBikeId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }