Yoast\WP\SEO\AI\Content_Planner\Infrastructure\Endpoints
Get_Outline_Endpoint{}└─ Content_Planner_Endpoint_Interface
Represents the content planner endpoint to retrieve the outline.
Хуков нет.
Использование
$Get_Outline_Endpoint = new Get_Outline_Endpoint(); // use class methods
Методы
- public get_name()
- public get_namespace()
- public get_route()
- public get_url()
Код Get_Outline_Endpoint{} Get Outline Endpoint{} Yoast 27.7
class Get_Outline_Endpoint implements Content_Planner_Endpoint_Interface {
/**
* Gets the name.
*
* @return string
*/
public function get_name(): string {
return 'getOutline';
}
/**
* Gets the namespace.
*
* @return string
*/
public function get_namespace(): string {
return Get_Outline_Route::ROUTE_NAMESPACE;
}
/**
* Gets the route.
*
* @return string
*/
public function get_route(): string {
return Get_Outline_Route::ROUTE_PREFIX;
}
/**
* Gets the URL.
*
* @return string
*/
public function get_url(): string {
return \rest_url( $this->get_namespace() . $this->get_route() );
}
}