Yoast\WP\SEO\Actions\Importing

Importing_Indexation_Action_Interface{}Yoast 1.0

Interface definition of reindexing action for indexables.

Хуков нет.

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

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

Методы

  1. public get_limit()
  2. public get_total_unindexed()
  3. public index()

Код Importing_Indexation_Action_Interface{} Yoast 24.4

interface Importing_Indexation_Action_Interface {

	/**
	 * Returns the total number of unindexed objects.
	 *
	 * @return int The total number of unindexed objects.
	 */
	public function get_total_unindexed();

	/**
	 * Indexes a number of objects.
	 *
	 * NOTE: ALWAYS use limits, this method is intended to be called multiple times over several requests.
	 *
	 * For indexing that requires JavaScript simply return the objects that should be indexed.
	 *
	 * @return array The reindexed objects.
	 */
	public function index();

	/**
	 * Returns the number of objects that will be indexed in a single indexing pass.
	 *
	 * @return int The limit.
	 */
	public function get_limit();
}