public function saveImagesHasProductList($con = null)
 {
     if (!$this->isValid()) {
         throw $this->getErrorSchema();
     }
     if (!isset($this->widgetSchema['images_has_product_list'])) {
         // somebody has unset this widget
         return;
     }
     if (null === $con) {
         $con = $this->getConnection();
     }
     $c = new Criteria();
     $c->add(ImagesHasProductPeer::IMAGES_ID, $this->object->getPrimaryKey());
     ImagesHasProductPeer::doDelete($c, $con);
     $values = $this->getValue('images_has_product_list');
     if (is_array($values)) {
         foreach ($values as $value) {
             $obj = new ImagesHasProduct();
             $obj->setImagesId($this->object->getPrimaryKey());
             $obj->setProductId($value);
             $obj->save();
         }
     }
 }
 /**
  * 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      ImagesHasProduct $value A ImagesHasProduct object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(ImagesHasProduct $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = serialize(array((string) $obj->getImagesId(), (string) $obj->getProductId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
 /**
  * saving our sets of keys albumid+imageid at album_has_image table
  * @param int $albumId
  * @param array $imagesIds
  */
 protected function saveImageProductConnections($productId, $imagesIds)
 {
     foreach ($imagesIds as $ids) {
         $item = new ImagesHasProduct();
         $item->setProductId($productId);
         $item->setImagesId($ids);
         $item->save();
     }
 }