Example #1
0
 /**
  * Get the associated Cicles object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Cicles The associated Cicles object.
  * @throws     PropelException
  */
 public function getCicles(PropelPDO $con = null)
 {
     if ($this->aCicles === null && $this->cicles_cicleid !== null) {
         $this->aCicles = CiclesPeer::retrieveByPk($this->cicles_cicleid);
         /* 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->aCicles->addActivitatss($this);
         		 */
     }
     return $this->aCicles;
 }