Yoast\WP\SEO\Dashboard\Domain\Endpoint

Endpoint_Interface{}Yoast 1.0

Хуков нет.

Использование

$Endpoint_Interface = new Endpoint_Interface();
// use class methods

Методы

  1. public get_name()
  2. public get_namespace()
  3. public get_route()
  4. public get_url()

Код Endpoint_Interface{} Yoast 24.4

interface Endpoint_Interface {

	/**
	 * Gets the name.
	 *
	 * @return string
	 */
	public function get_name(): string;

	/**
	 * Gets the namespace.
	 *
	 * @return string
	 */
	public function get_namespace(): string;

	/**
	 * Gets the route.
	 *
	 * @return string
	 */
	public function get_route(): string;

	/**
	 * Gets the URL.
	 *
	 * @return string
	 */
	public function get_url(): string;
}