Automattic\WooCommerce\Internal\Utilities
LegacyRestApiStub::register
Set up the Legacy REST API endpoints stub.
Метод класса: LegacyRestApiStub{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$LegacyRestApiStub = new LegacyRestApiStub(); $LegacyRestApiStub->register();
Код LegacyRestApiStub::register() LegacyRestApiStub::register WC 10.3.5
public function register() {
add_action( 'init', array( __CLASS__, 'add_rewrite_rules_for_legacy_rest_api_stub' ), 0 );
add_action( 'query_vars', array( __CLASS__, 'add_query_vars_for_legacy_rest_api_stub' ), 0 );
add_action( 'parse_request', array( __CLASS__, 'parse_legacy_rest_api_request' ), 0 );
}