Automattic\WooCommerce\Admin\API
OnboardingThemes::register_routes
Register routes.
Метод класса: OnboardingThemes{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$OnboardingThemes = new OnboardingThemes(); $OnboardingThemes->register_routes();
Код OnboardingThemes::register_routes() OnboardingThemes::register routes WC 10.5.0
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/install',
array(
array(
'methods' => \WP_REST_Server::EDITABLE,
'callback' => array( $this, 'install_theme' ),
'permission_callback' => array( $this, 'update_item_permissions_check' ),
),
'schema' => array( $this, 'get_item_schema' ),
)
);
register_rest_route(
$this->namespace,
'/' . $this->rest_base . '/activate',
array(
array(
'methods' => \WP_REST_Server::EDITABLE,
'callback' => array( $this, 'activate_theme' ),
'permission_callback' => array( $this, 'update_item_permissions_check' ),
),
'schema' => array( $this, 'get_item_schema' ),
)
);
}