예제 #1
0
 /**
  * Get the associated UserBikes object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     UserBikes The associated UserBikes object.
  * @throws     PropelException
  */
 public function getUserBikes(PropelPDO $con = null)
 {
     if ($this->aUserBikes === null && $this->bike_id !== null) {
         $c = new Criteria(UserBikesPeer::DATABASE_NAME);
         $c->add(UserBikesPeer::USER_BIKE_ID, $this->bike_id);
         $this->aUserBikes = UserBikesPeer::doSelectOne($c, $con);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aUserBikes->addUserEquipements($this);
         		 */
     }
     return $this->aUserBikes;
 }