PATH:
home
/
letacommog
/
lescompagnons
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
actions
/
indexables
<?php /** * Indexation action to call when the indexable indexation process is completed. * * @package Yoast\WP\SEO\Actions\Indexation */ namespace Yoast\WP\SEO\Actions\Indexation; use Yoast\WP\SEO\Helpers\Options_Helper; /** * Indexation action to call when the indexable indexation process is completed. */ class Indexable_Complete_Indexation_Action { /** * The options helper. * * @var Options_Helper */ private $options; /** * Indexable_Complete_Indexation_Action constructor. * * @param Options_Helper $options The options helper. */ public function __construct( Options_Helper $options ) { $this->options = $options; } /** * Wraps up the indexation process. * * @return array An empty array. */ public function complete() { $this->options->set( 'indexation_started', 0 ); $this->options->set( 'indexables_indexation_reason', '' ); $this->options->set( 'indexables_indexation_completed', true ); return []; } }
[+]
..
[-] indexable-complete-indexation-action.php
[edit]
[-] indexable-head-action.php
[edit]