ShoppingCart_Controller::clear PHP 메소드

clear() 공개 메소드

Action: clear the cart
public clear ( $request ) : AjaxHTTPResponse | boolean
$request
리턴 AjaxHTTPResponse | boolean
    public function clear($request)
    {
        $this->updateLocale($request);
        $this->cart->clear();
        $this->extend('updateClearResponse', $request, $response);
        return $response ? $response : self::direct();
    }