PATH:
home
/
letacommog
/
rachat-or-bourgenbresse
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
integrations
/
admin
<?php namespace Yoast\WP\SEO\Integrations\Admin; use WPSEO_Admin_Asset_Manager; use Yoast\WP\SEO\Actions\Indexation\Indexable_General_Indexation_Action; use Yoast\WP\SEO\Actions\Indexation\Indexable_Post_Indexation_Action; use Yoast\WP\SEO\Actions\Indexation\Indexable_Post_Type_Archive_Indexation_Action; use Yoast\WP\SEO\Actions\Indexation\Indexable_Term_Indexation_Action; use Yoast\WP\SEO\Actions\Indexation\Post_Link_Indexing_Action; use Yoast\WP\SEO\Actions\Indexation\Term_Link_Indexing_Action; use Yoast\WP\SEO\Conditionals\Migrations_Conditional; use Yoast\WP\SEO\Conditionals\Yoast_Tools_Page_Conditional; use Yoast\WP\SEO\Helpers\Indexable_Helper; use Yoast\WP\SEO\Helpers\Options_Helper; use Yoast\WP\SEO\Helpers\Short_Link_Helper; use Yoast\WP\SEO\Integrations\Integration_Interface; use Yoast\WP\SEO\Presenters\Admin\Indexing_List_Item_Presenter; use Yoast\WP\SEO\Routes\Indexing_Route; /** * Class Indexing_Tool_Integration. Bridge to the Javascript indexing tool on Yoast SEO Tools page. * * @package Yoast\WP\SEO\Integrations\Admin */ class Indexing_Tool_Integration implements Integration_Interface { /** * Represents the admin asset manager. * * @var WPSEO_Admin_Asset_Manager */ protected $asset_manager; /** * Represents the indexables helper. * * @var Indexable_Helper */ protected $indexable_helper; /** * The short link helper. * * @var Short_Link_Helper */ protected $short_link_helper; /** * Represents the options helper. * * @var Options_Helper */ protected $options_helper; /** * The post indexation action. * * @var Indexable_Post_Indexation_Action */ protected $post_indexation; /** * The term indexation action. * * @var Indexable_Term_Indexation_Action */ protected $term_indexation; /** * The post type archive indexation action. * * @var Indexable_Post_Type_Archive_Indexation_Action */ protected $post_type_archive_indexation; /** * The post link indexing action. * * @var Post_Link_Indexing_Action */ protected $post_link_indexing_action; /** * The term link indexing action. * * @var Term_Link_Indexing_Action */ protected $term_link_indexing_action; /** * Represents the general indexation. * * @var Indexable_General_Indexation_Action */ protected $general_indexation; /** * Returns the conditionals based on which this integration should be active. * * @return array The array of conditionals. */ public static function get_conditionals() { return [ Yoast_Tools_Page_Conditional::class, Migrations_Conditional::class, ]; } /** * Indexing_Integration constructor. * * @param WPSEO_Admin_Asset_Manager $asset_manager The admin asset manager. * @param Indexable_Helper $indexable_helper The indexable helper. * @param Short_Link_Helper $short_link_helper The short link helper. * @param Options_Helper $options_helper The options helper. * @param Indexable_Post_Indexation_Action $post_indexation The post indexing action. * @param Indexable_Term_Indexation_Action $term_indexation The term indexing action. * @param Indexable_Post_Type_Archive_Indexation_Action $post_type_archive_indexation The post type archive indexing action. * @param Indexable_General_Indexation_Action $general_indexation The general indexing action. * @param Post_Link_Indexing_Action $post_link_indexing_action The post indexing action. * @param Term_Link_Indexing_Action $term_link_indexing_action The term indexing action. */ public function __construct( WPSEO_Admin_Asset_Manager $asset_manager, Indexable_Helper $indexable_helper, Short_Link_Helper $short_link_helper, Options_Helper $options_helper, Indexable_Post_Indexation_Action $post_indexation, Indexable_Term_Indexation_Action $term_indexation, Indexable_Post_Type_Archive_Indexation_Action $post_type_archive_indexation, Indexable_General_Indexation_Action $general_indexation, Post_Link_Indexing_Action $post_link_indexing_action, Term_Link_Indexing_Action $term_link_indexing_action ) { $this->asset_manager = $asset_manager; $this->indexable_helper = $indexable_helper; $this->short_link_helper = $short_link_helper; $this->options_helper = $options_helper; $this->post_indexation = $post_indexation; $this->term_indexation = $term_indexation; $this->post_type_archive_indexation = $post_type_archive_indexation; $this->general_indexation = $general_indexation; $this->post_link_indexing_action = $post_link_indexing_action; $this->term_link_indexing_action = $term_link_indexing_action; } /** * Register hooks. */ public function register_hooks() { \add_action( 'wpseo_tools_overview_list_items', [ $this, 'render_indexing_list_item' ], 10 ); \add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_scripts' ], 10 ); } /** * Enqueues the required scripts. * * @return void */ public function enqueue_scripts() { $this->asset_manager->enqueue_script( 'indexation' ); $this->asset_manager->enqueue_style( 'admin-css' ); $this->asset_manager->enqueue_style( 'monorepo' ); $data = [ 'disabled' => ! $this->indexable_helper->should_index_indexables(), 'amount' => $this->get_unindexed_count(), 'firstTime' => ( $this->options_helper->get( 'indexing_first_time', true ) === true ), 'restApi' => [ 'root' => \esc_url_raw( \rest_url() ), 'endpoints' => $this->get_endpoints(), 'nonce' => \wp_create_nonce( 'wp_rest' ), ], ]; /** * Filter: 'wpseo_indexing_data' Filter to adapt the data used in the indexing process. * * @param array $data The indexing data to adapt. */ $data = \apply_filters( 'wpseo_indexing_data', $data ); \wp_localize_script( WPSEO_Admin_Asset_Manager::PREFIX . 'indexation', 'yoastIndexingData', $data ); } /** * Returns the total number of unindexed objects. * * @param int $unindexed_count The total number of unindexed indexables. * * @return int The total number of unindexed objects. */ public function get_unindexed_indexables_count( $unindexed_count = 0 ) { $unindexed_count += $this->post_indexation->get_total_unindexed(); $unindexed_count += $this->term_indexation->get_total_unindexed(); $unindexed_count += $this->general_indexation->get_total_unindexed(); $unindexed_count += $this->post_type_archive_indexation->get_total_unindexed(); $unindexed_count += $this->post_link_indexing_action->get_total_unindexed(); $unindexed_count += $this->term_link_indexing_action->get_total_unindexed(); return $unindexed_count; } /** * Returns the total number of unindexed objects and applies a filter for third party integrations. * * @param int $unindexed_count The total number of unindexed objects. * * @return int The total number of unindexed objects. */ public function get_unindexed_count( $unindexed_count = 0 ) { $unindexed_count = $this->get_unindexed_indexables_count( $unindexed_count ); return \apply_filters( 'wpseo_indexing_get_unindexed_count', $unindexed_count ); } /** * Renders the indexing list item. * * @return void */ public function render_indexing_list_item() { if ( \current_user_can( 'manage_options' ) ) { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- The output is correctly escaped in the presenter. echo new Indexing_List_Item_Presenter( $this->short_link_helper ); } } /** * Retrieves a list of the endpoints to use. * * @return array The endpoints. */ protected function get_endpoints() { $endpoints = [ 'prepare' => Indexing_Route::FULL_PREPARE_ROUTE, 'terms' => Indexing_Route::FULL_TERMS_ROUTE, 'posts' => Indexing_Route::FULL_POSTS_ROUTE, 'archives' => Indexing_Route::FULL_POST_TYPE_ARCHIVES_ROUTE, 'general' => Indexing_Route::FULL_GENERAL_ROUTE, 'indexablesComplete' => Indexing_Route::FULL_INDEXABLES_COMPLETE_ROUTE, 'post_link' => Indexing_Route::FULL_POST_LINKS_INDEXING_ROUTE, 'term_link' => Indexing_Route::FULL_TERM_LINKS_INDEXING_ROUTE, ]; $endpoints = \apply_filters( 'wpseo_indexing_endpoints', $endpoints ); $endpoints['complete'] = Indexing_Route::FULL_COMPLETE_ROUTE; return $endpoints; } }
[+]
..
[-] admin-columns-cache-integration.php
[edit]
[-] migration-error-integration.php
[edit]
[-] link-count-columns-integration.php
[edit]
[-] disable-concatenate-scripts-integration.php
[edit]
[-] background-indexing-integration.php
[edit]
[-] .htaccess
[edit]
[-] indexing-notification-integration.php
[edit]
[-] cron-integration.php
[edit]
[-] indexing-tool-integration.php
[edit]