public function savePcContactsTagsList($con = null)
 {
     if (!$this->isValid()) {
         throw $this->getErrorSchema();
     }
     if (!isset($this->widgetSchema['pc_contacts_tags_list'])) {
         // somebody has unset this widget
         return;
     }
     if (null === $con) {
         $con = $this->getConnection();
     }
     $c = new Criteria();
     $c->add(PcContactsTagsPeer::TAG_ID, $this->object->getPrimaryKey());
     PcContactsTagsPeer::doDelete($c, $con);
     $values = $this->getValue('pc_contacts_tags_list');
     if (is_array($values)) {
         foreach ($values as $value) {
             $obj = new PcContactsTags();
             $obj->setTagId($this->object->getPrimaryKey());
             $obj->setContactId($value);
             $obj->save();
         }
     }
 }
Exemplo n.º 2
0
 /**
  *
  * @param array|null $tagIds 
  */
 public function updateTags($tagIds)
 {
     // first remove all the pre-existing tags
     $c = new Criteria();
     $c->add(PcContactsTagsPeer::CONTACT_ID, $this->getId());
     PcContactsTagsPeer::doDelete($c);
     if (is_array($tagIds)) {
         foreach ($tagIds as $tagId) {
             $entry = new PcContactsTags();
             $entry->setContactId($this->getId())->setPcUser(PcUserPeer::getLoggedInUser())->setTagId($tagId)->save();
         }
     }
     return $this;
 }
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param      PropelPDO $con
  * @return     void
  * @throws     PropelException
  * @see        BaseObject::setDeleted()
  * @see        BaseObject::isDeleted()
  */
 public function delete(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(PcContactsTagsPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $ret = $this->preDelete($con);
         // symfony_behaviors behavior
         foreach (sfMixer::getCallables('BasePcContactsTags:delete:pre') as $callable) {
             if (call_user_func($callable, $this, $con)) {
                 $con->commit();
                 return;
             }
         }
         if ($ret) {
             PcContactsTagsPeer::doDelete($this, $con);
             $this->postDelete($con);
             // symfony_behaviors behavior
             foreach (sfMixer::getCallables('BasePcContactsTags:delete:post') as $callable) {
                 call_user_func($callable, $this, $con);
             }
             $this->setDeleted(true);
             $con->commit();
         } else {
             $con->commit();
         }
     } catch (PropelException $e) {
         $con->rollBack();
         throw $e;
     }
 }