[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor
/
modules
/
system-info
/
reporters
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 base-plugin.php
2,177 B
SET
[ EDIT ]
|
[ DEL ]
📄 base.php
5,450 B
SET
[ EDIT ]
|
[ DEL ]
📄 mu-plugins.php
1,971 B
SET
[ EDIT ]
|
[ DEL ]
📄 network-plugins.php
2,237 B
SET
[ EDIT ]
|
[ DEL ]
📄 plugins.php
2,019 B
SET
[ EDIT ]
|
[ DEL ]
📄 server.php
11,780 B
SET
[ EDIT ]
|
[ DEL ]
📄 theme.php
5,136 B
SET
[ EDIT ]
|
[ DEL ]
📄 user.php
2,033 B
SET
[ EDIT ]
|
[ DEL ]
📄 wordpress.php
5,476 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: mu-plugins.php
<?php namespace Elementor\Modules\System_Info\Reporters; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Elementor must-use plugins report. * * Elementor system report handler class responsible for generating a report for * must-use plugins. * * @since 1.0.0 */ class MU_Plugins extends Base_Plugin { /** * Must-Use plugins. * * Holds the sites must-use plugins list. * * @since 1.0.0 * @access private * * @var array */ private $plugins; /** * Get must-use plugins. * * Retrieve the must-use plugins. * * @since 2.0.0 * @access private * * @return array Must-Use plugins. */ private function get_mu_plugins() { if ( ! $this->plugins ) { $this->plugins = get_mu_plugins(); } return $this->plugins; } /** * Is enabled. * * Whether there are must-use plugins or not. * * @since 1.0.0 * @access public * * @return bool True if the site has must-use plugins, False otherwise. */ public function is_enabled() { return (bool) $this->get_mu_plugins(); } /** * Get must-use plugins reporter title. * * Retrieve must-use plugins reporter title. * * @since 1.0.0 * @access public * * @return string Reporter title. */ public function get_title() { return 'Must-Use Plugins'; } /** * Get must-use plugins report fields. * * Retrieve the required fields for the must-use plugins report. * * @since 1.0.0 * @access public * * @return array Required report fields with field ID and field label. */ public function get_fields() { return [ 'must_use_plugins' => 'Must-Use Plugins', ]; } /** * Get must-use plugins. * * Retrieve the sites must-use plugins. * * @since 1.0.0 * @access public * * @return array { * Report data. * * @type string $value The must-use plugins list. * } */ public function get_must_use_plugins() { return [ 'value' => $this->get_mu_plugins(), ]; } }