File "Base_Interface.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Tribe/REST/Headers/Base_Interface.php
File size: 977 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Interface Tribe__REST__Headers__Base_Interface
*
* Provides basic information for the
*/
interface Tribe__REST__Headers__Base_Interface {
/**
* Returns the header that the REST API will print on the page head to report
* its version.
*
* @return string
*/
public function get_api_version_header();
/**
* Returns the header the REST API will print on the page head to report its root
* url.
*
* @return string
*/
public function get_api_root_header();
/**
* Returns the `name` of the meta tag that will be printed on the page to indicate
* the REST API version.
*
* @return string
*/
public function get_api_version_meta_name();
/**
* Returns the REST API URL.
*
* @return string
*/
public function get_rest_url();
/**
* Returns the header the REST API will print on the page head to report its origin
* url. Normaly the home_url()
*
* @return string
*/
public function get_api_origin_header();
}