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