Beispiel #1
0
 public function clear()
 {
     $cartName = $this->getCartName();
     if ($this->saveType == 'session') {
         ISession::clear($cartName);
     } else {
         ICookie::clear($cartName);
     }
 }