/**
  * 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      PcGoogleCalendarEvent $value A PcGoogleCalendarEvent object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(PcGoogleCalendarEvent $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getTaskId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
예제 #2
0
 /**
  * Sets a single PcGoogleCalendarEvent object as related to this object by a one-to-one relationship.
  *
  * @param      PcGoogleCalendarEvent $l PcGoogleCalendarEvent
  * @return     PcTask The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setPcGoogleCalendarEvent(PcGoogleCalendarEvent $v)
 {
     $this->singlePcGoogleCalendarEvent = $v;
     // Make sure that that the passed-in PcGoogleCalendarEvent isn't already associated with this object
     if ($v->getPcTask() === null) {
         $v->setPcTask($this);
     }
     return $this;
 }
예제 #3
0
 /**
  * @param string $eventId
  */
 public function setGoogleCalendarEventId($eventId)
 {
     $googleCalendarEventEntry = PcGoogleCalendarEventPeer::retrieveByPK($this->getId());
     if (!is_object($googleCalendarEventEntry)) {
         $googleCalendarEventEntry = new PcGoogleCalendarEvent();
     }
     $googleCalendarEventEntry->setTaskId($this->getId())->setEventId($eventId)->save();
 }