PATH:
home
/
letacommog
/
rachat-or-bourgenbresse
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
routes
<?php namespace Yoast\WP\SEO\Routes; use WP_REST_Response; use Yoast\WP\SEO\Actions\Indexation\Indexation_Action_Interface; /** * Abstract_Indexation_Route class. * * Reindexation route for indexables. */ abstract class Abstract_Indexation_Route implements Route_Interface { /** * Responds to an indexation request. * * @param array $objects The objects that have been indexed. * @param string $next_url The url that should be called to continue reindexing. False if done. * * @return WP_REST_Response The response. */ protected function respond_with( $objects, $next_url ) { return new WP_REST_Response( [ 'objects' => $objects, 'next_url' => $next_url, ] ); } /** * Runs an indexation action and returns the response. * * @param Indexation_Action_Interface $indexation_action The indexation action. * @param string $url The url of the indexation route. * * @return WP_REST_Response The response. */ protected function run_indexation_action( Indexation_Action_Interface $indexation_action, $url ) { $indexables = $indexation_action->index(); $next_url = false; if ( \count( $indexables ) >= $indexation_action->get_limit() ) { $next_url = \rest_url( $url ); } return $this->respond_with( $indexables, $next_url ); } }
[+]
..
[-] abstract-indexation-route.php
[edit]
[-] yoast-head-rest-field.php
[edit]
[-] .htaccess
[edit]
[-] indexables-head-route.php
[edit]
[-] route-interface.php
[edit]
[-] indexing-route.php
[edit]
[-] semrush-route.php
[edit]