49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * The sitemap provider interface.
 | 
						|
 *
 | 
						|
 * @since      0.9.0
 | 
						|
 * @package    RankMath
 | 
						|
 * @subpackage RankMath\Sitemap
 | 
						|
 * @author     Rank Math <support@rankmath.com>
 | 
						|
 *
 | 
						|
 * @copyright Copyright (C) 2008-2019, Yoast BV
 | 
						|
 * The following code is a derivative work of the code from the Yoast(https://github.com/Yoast/wordpress-seo/), which is licensed under GPL v3.
 | 
						|
 */
 | 
						|
 | 
						|
namespace RankMath\Sitemap\Providers;
 | 
						|
 | 
						|
defined( 'ABSPATH' ) || exit;
 | 
						|
 | 
						|
/**
 | 
						|
 * Provider interface.
 | 
						|
 */
 | 
						|
interface Provider {
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Check if provider supports given item type.
 | 
						|
	 *
 | 
						|
	 * @param  string $type Type string to check for.
 | 
						|
	 * @return boolean
 | 
						|
	 */
 | 
						|
	public function handles_type( $type );
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Get set of sitemaps index link data.
 | 
						|
	 *
 | 
						|
	 * @param  int $max_entries Entries per sitemap.
 | 
						|
	 * @return array
 | 
						|
	 */
 | 
						|
	public function get_index_links( $max_entries );
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Get set of sitemap link data.
 | 
						|
	 *
 | 
						|
	 * @param  string $type         Sitemap type.
 | 
						|
	 * @param  int    $max_entries  Entries per sitemap.
 | 
						|
	 * @param  int    $current_page Current page of the sitemap.
 | 
						|
	 * @return array
 | 
						|
	 */
 | 
						|
	public function get_sitemap_links( $type, $max_entries, $current_page );
 | 
						|
}
 |