public function saveMissatgesllistesList($con = null)
 {
     if (!$this->isValid()) {
         throw $this->getErrorSchema();
     }
     if (!isset($this->widgetSchema['missatgesllistes_list'])) {
         // somebody has unset this widget
         return;
     }
     if (null === $con) {
         $con = $this->getConnection();
     }
     $c = new Criteria();
     $c->add(MissatgesllistesPeer::IDMISSATGESLLISTES, $this->object->getPrimaryKey());
     MissatgesllistesPeer::doDelete($c, $con);
     $values = $this->getValue('missatgesllistes_list');
     if (is_array($values)) {
         foreach ($values as $value) {
             $obj = new Missatgesllistes();
             $obj->setIdmissatgesllistes($this->object->getPrimaryKey());
             $obj->setLlistesIdllistes($value);
             $obj->save();
         }
     }
 }
Example #2
0
 public static function initialize($ID, $IDL, $idS)
 {
     $O = self::retrieveByPK($ID, $IDL);
     if (!$O instanceof Missatgesllistes) {
         $O = new Missatgesllistes();
         $O->setIdmissatgesllistes($ID);
         $O->setLlistesIdllistes($IDL);
         $O->setEnviat(null);
         $O->setSiteId($idS);
         $O->setActiu(true);
     }
     return new MissatgesllistesForm($O, array('IDS' => $idS));
 }