Example #1
0
 public function saveEventWingsList($con = null)
 {
     if (!$this->isValid()) {
         throw $this->getErrorSchema();
     }
     if (!isset($this->widgetSchema['event_wings_list'])) {
         // somebody has unset this widget
         return;
     }
     if (is_null($con)) {
         $con = $this->getConnection();
     }
     $c = new Criteria();
     $c->add(EventWingsPeer::WING_ID, $this->object->getPrimaryKey());
     EventWingsPeer::doDelete($c, $con);
     $values = $this->getValue('event_wings_list');
     if (is_array($values)) {
         foreach ($values as $value) {
             $obj = new EventWings();
             $obj->setWingId($this->object->getPrimaryKey());
             $obj->setEventId($value);
             $obj->save();
         }
     }
 }
Example #2
0
 protected function processForm(sfWebRequest $request, sfForm $form)
 {
     $form->bind($request->getParameter($form->getName()), $request->getFiles($form->getName()));
     if ($form->isValid()) {
         $event = $form->save();
         $arr = $request->getParameter('event[wing_id]');
         $ew = EventWingsPeer::retrieveByEventId($request->getParameter('id'));
         if (is_array($ew)) {
             foreach ($ew as $eav) {
                 $eav->delete();
             }
         }
         foreach ($arr as $key => $val) {
             $ev = new EventWings();
             if ($request->getParameter('id') != '') {
                 $ev->setEventId($request->getParameter('id'));
             } else {
                 $ev->setEventId($form->getObject()->getId());
             }
             $ev->setWingId($val);
             $ev->save();
             unset($ev);
         }
         $this->redirect('/event');
     }
 }
Example #3
0
 /**
  * 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      EventWings $value A EventWings object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(EventWings $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = serialize(array((string) $obj->getEventId(), (string) $obj->getWingId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }