| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/indexation-action-interface.php.tar |
lebauwcentre/wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php 0000644 00000001432 15114050372 0032743 0 ustar 00 home/xbodynamge <?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();
}
xbodynamge/www/wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php0000644 00000001432 15114050774 0031115 0 ustar 00 home <?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();
}
namtation/wp-content/plugins/wordpress-seo/src/actions/indexing/indexation-action-interface.php 0000644 00000001432 15114051103 0032246 0 ustar 00 home/xbodynamge <?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();
}
plugins/wordpress-seo/src/deprecated/src/actions/indexation/indexation-action-interface.php 0000644 00000000540 15115053524 0034335 0 ustar 00 home/xbodynamge/www/wp-content <?php
namespace Yoast\WP\SEO\Actions\Indexation;
/**
* Interface definition of reindexation action for indexables.
*
* @deprecated 15.1 - Use \Yoast\WP\SEO\Actions\Indexing\Indexation_Action_Interface instead.
* @codeCoverageIgnore
*/
interface Indexation_Action_Interface extends \Yoast\WP\SEO\Actions\Indexing\Indexation_Action_Interface {
}