File "View_Url_Provider_Interface.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Views/V2/Interfaces/View_Url_Provider_Interface.php
File size: 2.3 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Classes implementing this interface will provide methods to locate them based on a URL and will provide URL-related
 * methods.
 *
 * @since   4.9.3
 * @package Tribe\Events\Views\V2\Interfaces
 */

namespace Tribe\Events\Views\V2\Interfaces;

use Tribe\Events\Views\V2\Url;

/**
 * Interface Url_Provider_Interface
 *
 * @since   4.9.3
 * @package Tribe\Events\Views\V2\Interfaces
 */
interface View_Url_Provider_Interface {

	/**
	 * Returns the URL associated to this View, if any.
	 *
	 * @since 4.9.3
	 *
	 * @param bool $canonical Whether to return the canonical version of the URL or the normal one.
	 * @param bool $force Whether to force the re-fetch and ignore cached values or not.
	 *
	 * @return string The current URL associated to the view or an empty string if this View does not correspond to a
	 *                URL.
	 */
	public function get_url( $canonical = false, $force = false );

	/**
	 * Returns the URL associated to this View logical, next view.
	 *
	 * @since 4.9.3
	 *
	 * @param bool $canonical Whether to return the canonical version of the URL or the normal one.
	 * @param array $passthru_vars An array of query arguments that will be passed thru intact, and appended to the URL.
	 *
	 * @return string The URL associated to this View logical, next view or an empty string if no next View exists.
	 */
	public function next_url( $canonical = false, array $passthru_vars = [] );

	/**
	 * Returns the URL associated to this View logical, previous view.
	 *
	 * @since 4.9.3
	 *
	 * @param bool $canonical Whether to return the canonical version of the URL or the normal one.
	 * @param array $passthru_vars An array of query arguments that will be passed thru intact, and appended to the URL.
	 *
	 * @return string The URL associated to this View logical, next view or an empty string if no previous View exists.
	 */
	public function prev_url( $canonical = false, array $passthru_vars = [] );

	/**
	 * Returns the URL object used by the View, if any.
	 *
	 * @since 4.9.3
	 *
	 * @return \Tribe\Events\Views\V2\Url|null
	 */
	public function get_url_object();

	/**
	 * Updates the View URL object reference.
	 *
	 * @since 5.7.0
	 *
	 * @param Url $url_object A reference to the the new URL instance
	 *                        the View should use.
	 */
	public function set_url_object( Url $url_object );
}