PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
actions
/
indexing
<?php namespace Yoast\WP\SEO\Actions\Indexing; /** * Interface definition of reindexing action for indexables. */ interface 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(); }
[-] term-link-indexing-action.php
[edit]
[+]
..
[-] limited-indexing-action-interface.php
[edit]
[-] indexable-post-type-archive-indexation-action.php
[edit]
[-] indexable-post-indexation-action.php
[edit]
[-] indexing-complete-action.php
[edit]
[-] abstract-indexing-action.php
[edit]
[-] post-link-indexing-action.php
[edit]
[-] abstract-link-indexing-action.php
[edit]
[-] indexable-term-indexation-action.php
[edit]
[-] indexing-prepare-action.php
[edit]
[-] indexable-indexing-complete-action.php
[edit]
[-] indexable-general-indexation-action.php
[edit]
[-] indexation-action-interface.php
[edit]