Automattic\WooCommerce\StoreApi\Routes\V1
Order::get_args()
Get method arguments for this REST route.
Метод класса: Order{}
Хуков нет.
Возвращает
Массив
. An array of endpoints.
Использование
$Order = new Order(); $Order->get_args();
Код Order::get_args() Order::get args WC 9.5.1
public function get_args() { return [ [ 'methods' => \WP_REST_Server::READABLE, 'callback' => [ $this, 'get_response' ], 'permission_callback' => [ $this, 'is_authorized' ], 'args' => [ 'context' => $this->get_context_param( [ 'default' => 'view' ] ), ], ], 'schema' => [ $this->schema, 'get_public_item_schema' ], ]; }