WC_Plugin_Api_Updater::plugins_api()public staticWC 1.0

Plugin information callback for Woo extensions.

Метод класса: WC_Plugin_Api_Updater{}

Хуков нет.

Возвращает

Объект. An updated $response.

Использование

$result = WC_Plugin_Api_Updater::plugins_api( $response, $action, $args );
$response(объект) (обязательный)
The response core needs to display the modal.
$action(строка) (обязательный)
The requested plugins_api() action.
$args(объект) (обязательный)
Arguments passed to plugins_api().

Код WC_Plugin_Api_Updater::plugins_api() WC 9.4.2

public static function plugins_api( $response, $action, $args ) {
	if ( 'plugin_information' !== $action ) {
		return $response;
	}

	return self::override_products_api_response( $response, $action, $args );
}