File "plugins-list-handler.php"
Full Path: /home/ccipcixf/public_html/beta/wp-content/plugins/wordpress-seo/src/plugins-tab/application/plugins-list-handler.php
File size: 1.84 KB
MIME-type: text/x-php
Charset: utf-8
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Plugins_Tab\Application;
use Yoast\WP\SEO\Plugins_Tab\Domain\Plugin_Detector;
/**
* Handles the filtering logic for the Yoast plugins tab on the Plugins screen.
*/
class Plugins_List_Handler {
/**
* The plugin detector.
*
* @var Plugin_Detector
*/
private $detector;
/**
* Constructs the handler.
*
* @param Plugin_Detector $detector The plugin detector.
*/
public function __construct( Plugin_Detector $detector ) {
$this->detector = $detector;
}
/**
* Filters the plugins list to add a 'yoast' group when 2+ Yoast plugins are installed.
*
* @param array<string, array<string, array<string, string>>> $plugins The plugins list keyed by status.
*
* @return array<string, array<string, array<string, string>>> The filtered plugins list.
*/
public function filter_plugins_list( $plugins ) {
if ( ! \is_array( $plugins ) || ! isset( $plugins['all'] ) ) {
return $plugins;
}
$yoast_plugins = [];
foreach ( $plugins['all'] as $plugin_file => $plugin_data ) {
if ( $this->detector->is_yoast_plugin( $plugin_data ) ) {
$yoast_plugins[ $plugin_file ] = $plugin_data;
}
}
if ( \count( $yoast_plugins ) < Plugin_Detector::MINIMUM_FOR_TAB ) {
return $plugins;
}
$plugins['yoast'] = $yoast_plugins;
return $plugins;
}
/**
* Returns the status text for the Yoast plugins tab.
*
* @param string $text The current status text.
* @param int $count The number of plugins with this status.
* @param string $type The status type slug.
*
* @return string The status text.
*/
public function get_status_text( $text, $count, $type ) {
if ( $type !== 'yoast' ) {
return $text;
}
return \_nx( 'Yoast', 'Yoast', $count, 'plugin status', 'wordpress-seo' );
}
}