PATH:
home
/
letacommog
/
lescompagnons
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
presenters
/
admin
<?php /** * Presenter class for the indexation modal. * * @package Yoast\YoastSEO\Presenters\Admin */ namespace Yoast\WP\SEO\Presenters\Admin; use WPSEO_Shortlinker; use Yoast\WP\SEO\Presenters\Abstract_Presenter; /** * Indexation_List_Item_Presenter class. */ class Indexation_List_Item_Presenter extends Abstract_Presenter { /** * The number of objects that need to be reindexed. * * @var int */ protected $total_unindexed; /** * Indexation_List_Item_Presenter constructor. * * @param int $total_unindexed The number of objects that need to be indexed. */ public function __construct( $total_unindexed ) { $this->total_unindexed = $total_unindexed; } /** * Presents the list item for the tools menu. * * @return string The list item HTML. */ public function present() { $output = \sprintf( '<li><strong>%s</strong>', \esc_html__( 'SEO Data', 'wordpress-seo' ) ); $output .= \sprintf( '<p><a href="%1$s" target="_blank">%2$s</a>%3$s</p>', \esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/3-z' ) ), \sprintf( /* translators: 1: Expands to Yoast SEO. */ \esc_html__( '%1$s creates and maintains an index of all of your site\'s SEO data in order to speed up your site', 'wordpress-seo' ), 'Yoast SEO' ), \sprintf( /* translators: 1: Expands to Yoast SEO. */ \esc_html__( '. To build your index, %1$s needs to process all of your content.', 'wordpress-seo' ), 'Yoast SEO' ) ); /** * Filter 'wpseo_shutdown_indexation_limit' - Allow filtering the amount of objects that can be indexed during shutdown. * * @api int The maximum number of objects indexed. */ $shutdown_limit = \apply_filters( 'wpseo_shutdown_indexation_limit', 25 ); if ( $this->total_unindexed === 0 || $this->total_unindexed < $shutdown_limit ) { $output .= '<span class="wpseo-checkmark-ok-icon"></span>' . \esc_html__( 'Great, your site has been optimized!', 'wordpress-seo' ); } else { $output .= \sprintf( '<span id="yoast-indexation">' . '<button type="button" class="button yoast-open-indexation" data-title="%1$s" data-settings="yoastIndexationData">' . '%2$s' . '</button>' . '</span>', \esc_attr__( 'Speeding up your site', 'wordpress-seo' ), \esc_html__( 'Start processing and speed up your site now', 'wordpress-seo' ) ); } $output .= '</li>'; return $output; } }
[+]
..
[-] alert-presenter.php
[edit]
[-] indexation-permalink-warning-presenter.php
[edit]
[-] indexation-modal-presenter.php
[edit]
[-] migration-error-presenter.php
[edit]
[-] indexation-warning-presenter.php
[edit]
[-] indexation-list-item-presenter.php
[edit]