Exemplo n.º 1
0
 public function update($null_values = false)
 {
     if (isset(self::$_nbProducts[$this->id])) {
         unset(self::$_nbProducts[$this->id]);
     }
     if (isset(self::$_totalWeight[$this->id])) {
         unset(self::$_totalWeight[$this->id]);
     }
     $this->_products = null;
     $return = parent::update($null_values);
     Hook::exec('actionCartSave');
     return $return;
 }