Yoast\WP\SEO\Dashboard\Infrastructure\Endpoints
Time_Based_SEO_Metrics_Endpoint{}└─ Dashboard_Endpoint_Interface
Represents the time based SEO metrics endpoint.
Хуков нет.
Использование
$Time_Based_SEO_Metrics_Endpoint = new Time_Based_SEO_Metrics_Endpoint(); // use class methods
Методы
- public get_name()
- public get_namespace()
- public get_route()
- public get_url()
Код Time_Based_SEO_Metrics_Endpoint{} Time Based SEO Metrics Endpoint{} Yoast 27.6
class Time_Based_SEO_Metrics_Endpoint implements Dashboard_Endpoint_Interface {
/**
* Gets the name.
*
* @return string
*/
public function get_name(): string {
return 'timeBasedSeoMetrics';
}
/**
* Gets the namespace.
*
* @return string
*/
public function get_namespace(): string {
return Time_Based_SEO_Metrics_Route::ROUTE_NAMESPACE;
}
/**
* Gets the route.
*
* @return string
*/
public function get_route(): string {
return Time_Based_SEO_Metrics_Route::ROUTE_NAME;
}
/**
* Gets the URL.
*
* @return string
*/
public function get_url(): string {
return \rest_url( $this->get_namespace() . $this->get_route() );
}
}