PATH:
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
includes
/
interfaces
<?php /** * Webhook Data Store Interface * * @version 3.2.0 * @package Kkart\Interface */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Kkart Webhook data store interface. */ interface KKART_Webhook_Data_Store_Interface { /** * Get API version number. * * @since 3.2.0 * @param string $api_version REST API version. * @return int */ public function get_api_version_number( $api_version ); /** * Get all webhooks IDs. * * @since 3.2.0 * @throws InvalidArgumentException If a $status value is passed in that is not in the known kkart_get_webhook_statuses() keys. * @param string $status Optional - status to filter results by. Must be a key in return value of @see kkart_get_webhook_statuses(). @since 3.6.0. * @return int[] */ public function get_webhooks_ids( $status = '' ); }
[-] class-kkart-queue-interface.php
[edit]
[-] class-kkart-coupon-data-store-interface.php
[edit]
[-] class-kkart-order-item-product-data-store-interface.php
[edit]
[-] class-kkart-shipping-zone-data-store-interface.php
[edit]
[+]
..
[-] class-kkart-customer-download-log-data-store-interface.php
[edit]
[-] class-kkart-object-data-store-interface.php
[edit]
[-] class-kkart-webhooks-data-store-interface.php
[edit]
[-] class-kkart-customer-data-store-interface.php
[edit]
[-] class-kkart-log-handler-interface.php
[edit]
[-] class-kkart-order-item-type-data-store-interface.php
[edit]
[-] class-kkart-product-data-store-interface.php
[edit]
[-] class-kkart-importer-interface.php
[edit]
[-] class-kkart-logger-interface.php
[edit]
[-] class-kkart-customer-download-data-store-interface.php
[edit]
[-] class-kkart-payment-token-data-store-interface.php
[edit]
[-] class-kkart-product-variable-data-store-interface.php
[edit]
[-] class-kkart-order-refund-data-store-interface.php
[edit]
[-] class-kkart-order-item-data-store-interface.php
[edit]
[-] class-kkart-order-data-store-interface.php
[edit]
[-] class-kkart-abstract-order-data-store-interface.php
[edit]