Automattic\WooCommerce\Admin\API\AI
StoreInfo::register_routes()
Register routes.
Метод класса: StoreInfo{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$StoreInfo = new StoreInfo(); $StoreInfo->register_routes();
Код StoreInfo::register_routes() StoreInfo::register routes WC 9.7.1
public function register_routes() { $this->register( array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( $this, 'get_response' ), 'permission_callback' => array( Middleware::class, 'is_authorized' ), ), 'schema' => array( $this, 'get_schema' ), ) ); }