public function savePcDirtyTaskList($con = null) { if (!$this->isValid()) { throw $this->getErrorSchema(); } if (!isset($this->widgetSchema['pc_dirty_task_list'])) { // somebody has unset this widget return; } if (null === $con) { $con = $this->getConnection(); } $c = new Criteria(); $c->add(PcDirtyTaskPeer::TASK_ID, $this->object->getPrimaryKey()); PcDirtyTaskPeer::doDelete($c, $con); $values = $this->getValue('pc_dirty_task_list'); if (is_array($values)) { foreach ($values as $value) { $obj = new PcDirtyTask(); $obj->setTaskId($this->object->getPrimaryKey()); $obj->setUserId($value); $obj->save(); } } }
/** * * @param PcUser $user * @param PcTask $task * @return boolean - return true if the entry has been actually added */ public static function addEntry($user, $task) { if ($user == null) { return false; } if ($task == null) { return false; } $entry = self::retrieveByPK($user->getId(), $task->getId()); if (is_object($entry)) { // the entry already exists return false; } $dirtyTask = new PcDirtyTask(); $dirtyTask->setUserId($user->getId())->setTaskId($task->getId())->save(); return true; }
/** * 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 PcDirtyTask $value A PcDirtyTask object. * @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally). */ public static function addInstanceToPool(PcDirtyTask $obj, $key = null) { if (Propel::isInstancePoolingEnabled()) { if ($key === null) { $key = serialize(array((string) $obj->getUserId(), (string) $obj->getTaskId())); } // if key === null self::$instances[$key] = $obj; } }