Server IP : 66.29.132.122 / Your IP : 3.145.77.232 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/packages/kkart-blocks/src/StoreApi/Routes/ |
Upload File : |
<?php namespace Automattic\Kkart\Blocks\StoreApi\Routes; use Automattic\Kkart\Blocks\StoreApi\Utilities\CartController; /** * CartRemoveItem class. * * @internal This API is used internally by Blocks--it is still in flux and may be subject to revisions. */ class CartRemoveItem extends AbstractCartRoute { /** * Get the path of this REST route. * * @return string */ public function get_path() { return '/cart/remove-item'; } /** * Get method arguments for this REST route. * * @return array An array of endpoints. */ public function get_args() { return [ [ 'methods' => \WP_REST_Server::CREATABLE, 'callback' => [ $this, 'get_response' ], 'permission_callback' => '__return_true', 'args' => [ 'key' => [ 'description' => __( 'Unique identifier (key) for the cart item.', 'kkart' ), 'type' => 'string', ], ], ], 'schema' => [ $this->schema, 'get_public_item_schema' ], ]; } /** * Handle the request and return a valid response for this endpoint. * * @throws RouteException On error. * @param \WP_REST_Request $request Request object. * @return \WP_REST_Response */ protected function get_route_post_response( \WP_REST_Request $request ) { $controller = new CartController(); $cart = $controller->get_cart_instance(); $cart_item = $controller->get_cart_item( $request['key'] ); if ( ! $cart_item ) { throw new RouteException( 'kkart_rest_cart_invalid_key', __( 'Cart item no longer exists or is invalid.', 'kkart' ), 409 ); } $cart->remove_cart_item( $request['key'] ); return rest_ensure_response( $this->schema->get_item_response( $cart ) ); } }