Lines:
1 to 29 of 29
<?php /** * WooCommerce Auth * * Handles wc-auth endpoint requests. * * @package WooCommerce\RestApi * @since 2.4.0 */ defined( 'ABSPATH' ) || exit; /* class WC_Auth */ /* function WC_Auth::__construct() – Setup class. */ /* function WC_Auth::add_query_vars() – Add query vars. */ /* function WC_Auth::add_endpoint() – Add auth endpoint. */ /* function WC_Auth::get_i18n_scope() – Get scope name. */ /* function WC_Auth::get_permissions_in_scope() – Return a list of permissions a scope allows. */ /* function WC_Auth::build_url() – Build auth urls. */ /* function WC_Auth::get_formatted_url() – Decode and format a URL. */ /* function WC_Auth::make_validation() – Make validation. */ /* function WC_Auth::create_keys() – Create keys. */ /* function WC_Auth::post_consumer_data() – Post consumer data. */ /* function WC_Auth::handle_auth_requests() – Handle auth requests. */ /* function WC_Auth::auth_endpoint() – Auth endpoint. */ /* function WC_Auth::maybe_delete_key() – Maybe delete key. */ new WC_Auth();