PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
woocommerce
/
includes
/
interfaces
<?php /** * Webhook Data Store Interface * * @version 3.2.0 * @package WooCommerce\Interface */ /** * WooCommerce Webhook data store interface. */ interface WC_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 wc_get_webhook_statuses() keys. * @param string $status Optional - status to filter results by. Must be a key in return value of @see wc_get_webhook_statuses(). @since 3.6.0. * @return int[] */ public function get_webhooks_ids( $status = '' ); }
[-] class-wc-order-item-type-data-store-interface.php
[edit]
[-] class-wc-order-data-store-interface.php
[edit]
[-] class-wc-logger-interface.php
[edit]
[-] class-wc-product-variable-data-store-interface.php
[edit]
[+]
..
[-] class-wc-customer-download-data-store-interface.php
[edit]
[-] class-wc-importer-interface.php
[edit]
[-] class-wc-object-data-store-interface.php
[edit]
[-] class-wc-customer-data-store-interface.php
[edit]
[-] class-wc-customer-download-log-data-store-interface.php
[edit]
[-] class-wc-abstract-order-data-store-interface.php
[edit]
[-] class-wc-order-item-product-data-store-interface.php
[edit]
[-] class-wc-payment-token-data-store-interface.php
[edit]
[-] class-wc-queue-interface.php
[edit]
[-] class-wc-webhooks-data-store-interface.php
[edit]
[-] class-wc-coupon-data-store-interface.php
[edit]
[-] class-wc-order-refund-data-store-interface.php
[edit]
[-] class-wc-product-data-store-interface.php
[edit]
[-] class-wc-log-handler-interface.php
[edit]
[-] class-wc-order-item-data-store-interface.php
[edit]
[-] class-wc-shipping-zone-data-store-interface.php
[edit]