| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: Extension_NewRelic_Plugin_Admin.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Extension_NewRelic_Plugin_Admin
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
* phpcs:disable Generic.CodeAnalysis.UnusedFunctionParameter
*/
class Extension_NewRelic_Plugin_Admin {
/**
* Config
*
* @var Config
*/
private $_config;
/**
* Retrieves the list of available extensions and adds New Relic to the list.
*
* @param array $extensions List of existing extensions.
* @param array $w3tc_config Configuration data.
*
* @return array Updated list of extensions.
*/
public static function w3tc_extensions( $extensions, $w3tc_config ) {
$extensions['newrelic'] = array(
'name' => 'New Relic',
'author' => 'W3 EDGE',
'description' => __( 'Legacy: New Relic is software analytics platform offering app performance management and mobile monitoring solutions.', 'w3-total-cache' ),
'author_uri' => 'https://www.w3-edge.com/',
'extension_uri' => 'https://www.w3-edge.com/',
'extension_id' => 'newrelic',
'settings_exists' => true,
'version' => '1.0',
'enabled' => true,
'requirements' => '',
'active_frontend_own_control' => true,
'path' => 'w3-total-cache/Extension_NewRelic_Plugin.php',
);
return $extensions;
}
/**
* Constructor for the New Relic extension.
* Initializes the configuration for the New Relic plugin.
*
* @return void
*/
public function __construct() {
$this->_config = Dispatcher::config();
}
/**
* Executes the necessary actions and filters for the New Relic extension.
*
* @return void
*/
public function run() {
add_filter( 'w3tc_compatibility_test', array( $this, 'verify_compatibility' ) );
add_filter( 'w3tc_config_key_descriptor', array( $this, 'w3tc_config_key_descriptor' ), 10, 2 );
add_action( 'w3tc_config_save', array( $this, 'w3tc_config_save' ), 10, 1 );
add_filter( 'w3tc_admin_actions', array( $this, 'w3tc_admin_actions' ) );
add_filter( 'w3tc_admin_menu', array( $this, 'w3tc_admin_menu' ) );
add_filter( 'w3tc_extension_plugin_links_newrelic', array( $this, 'w3tc_extension_plugin_links' ) );
add_action( 'w3tc_settings_page-w3tc_monitoring', array( $this, 'w3tc_settings_page_w3tc_monitoring' ) );
add_action( 'admin_init_w3tc_general', array( '\W3TC\Extension_NewRelic_GeneralPage', 'admin_init_w3tc_general' ) );
add_action( 'w3tc_ajax', array( '\W3TC\Extension_NewRelic_Popup', 'w3tc_ajax' ) );
if ( Util_Admin::is_w3tc_admin_page() ) {
add_action( 'admin_notices', array( $this, 'admin_notices' ) );
add_action( 'network_admin_notices', array( $this, 'admin_notices' ) );
}
$v = $this->_config->get_string( array( 'newrelic', 'api_key' ) );
$new_relic_configured = ! empty( $v );
if ( $new_relic_configured ) {
add_action( 'admin_init_w3tc_dashboard', array( '\W3TC\Extension_NewRelic_Widget', 'admin_init_w3tc_dashboard' ) );
add_action( 'w3tc_ajax', array( '\W3TC\Extension_NewRelic_Widget', 'w3tc_ajax' ) );
add_filter( 'w3tc_notes', array( $this, 'w3tc_notes' ) );
}
}
/**
* Modifies the admin menu to include New Relic-related items if applicable.
*
* @param array $menu Existing admin menu items.
*
* @return array Modified admin menu with New Relic monitoring option.
*/
public function w3tc_admin_menu( $menu ) {
$w3tc_c = Dispatcher::config();
$monitoring_type = $w3tc_c->get_string( array( 'newrelic', 'monitoring_type' ) );
if ( 'apm' === $monitoring_type ) {
$menu['w3tc_monitoring'] = array(
'page_title' => __( 'Monitoring', 'w3-total-cache' ),
'menu_text' => __( 'Monitoring', 'w3-total-cache' ),
'visible_always' => false,
'order' => 1200,
);
}
return $menu;
}
/**
* Adds custom actions for the New Relic extension.
*
* @param array $handlers Existing array of admin action handlers.
*
* @return array Modified array of action handlers with the New Relic handler added.
*/
public function w3tc_admin_actions( $handlers ) {
$handlers['new_relic'] = 'Extension_NewRelic_AdminActions';
return $handlers;
}
/**
* Adds custom plugin links for the New Relic extension.
*
* @param array $w3tc_links Existing array of plugin links.
*
* @return array Modified array of plugin links with New Relic settings link added.
*/
public function w3tc_extension_plugin_links( $w3tc_links ) {
$w3tc_links = array();
$w3tc_links[] = '<a class="edit" href="' . esc_attr( Util_Ui::admin_url( 'admin.php?page=w3tc_general#monitoring' ) ) .
'">' . __( 'Settings', 'w3-total-cache' ) . '</a>';
return $w3tc_links;
}
/**
* Displays the settings page for the New Relic extension.
*
* @return void
*/
public function w3tc_settings_page_w3tc_monitoring() {
$v = new Extension_NewRelic_Page();
$v->render_content();
}
/**
* Displays admin notices related to New Relic configuration.
*
* @return void
*/
public function admin_notices() {
$api_key = $this->_config->get_string( array( 'newrelic', 'api_key' ) );
if ( empty( $api_key ) ) {
return;
}
$nerser = Dispatcher::component( 'Extension_NewRelic_Service' );
$verify_running_result = $nerser->verify_running();
$not_running = is_array( $verify_running_result );
if ( $not_running ) {
$w3tc_message = '<p>' .
__( 'New Relic is not running correctly. ', 'w3-total-cache' ) .
'<a href="#" class="w3tc_link_more {for_class: \'w3tc_nr_admin_notice\'}">' .
'more</a> ' .
'<div class="w3tc_none w3tc_nr_admin_notice">' .
__( 'The plugin has detected the following issues:. ', 'w3-total-cache' );
$w3tc_message .= "<ul class=\"w3-bullet-list\">\n";
foreach ( $verify_running_result as $cause ) {
$w3tc_message .= "<li>$cause</li>";
}
$w3tc_message .= "</ul>\n";
$w3tc_message .= '<p>' . sprintf(
// Translators: 1 opening HTML link to General Settings page monitoring section, 2 closing HTML link.
__(
'Please review the %1$ssettings%2$s.',
'w3-total-cache'
),
'<a href="' . network_admin_url( 'admin.php?page=w3tc_general#monitoring' ) . '">',
'</a>'
) . '</p>';
$w3tc_message .= "</div></p>\n";
Util_Ui::error_box( $w3tc_message );
}
}
/**
* Adds custom notes to the W3 Total Cache dashboard related to New Relic.
*
* @param array $w3tc_notes Existing array of notes to be displayed.
*
* @return array Modified array of notes with New Relic notifications added.
*/
public function w3tc_notes( $w3tc_notes ) {
$newrelic_notes = Dispatcher::component( 'Extension_NewRelic_AdminNotes' );
$w3tc_notes = array_merge( $w3tc_notes, $newrelic_notes->notifications( $this->_config ) );
return $w3tc_notes;
}
/**
* Verifies the compatibility of the New Relic extension with the current environment.
*
* @param array $verified_list List of verified components and their statuses.
*
* @return array Modified list of verified components with New Relic verification results added.
*/
public function verify_compatibility( $verified_list ) {
$nerser = Dispatcher::component( 'Extension_NewRelic_Service' );
$nr_verified = $nerser->verify_compatibility();
$verified_list[] = '<strong>New Relic</strong>';
foreach ( $nr_verified as $criteria => $w3tc_result ) {
$verified_list[] = sprintf( "$criteria: %s", $w3tc_result );
}
return $verified_list;
}
/**
* Handles the saving of configuration settings for the New Relic extension.
*
* @param object $w3tc_config Configuration object containing the settings to be saved.
*
* @return void
*/
public function w3tc_config_save( $w3tc_config ) {
// frontend activity.
$api_key = $w3tc_config->get_string( array( 'newrelic', 'api_key' ) );
$is_filled = ! empty( $api_key );
if ( ! $is_filled ) {
$w3tc_config->set( array( 'newrelic', 'apm.application_name' ), '' );
$w3tc_config->set( array( 'newrelic', 'browser.application_id' ), '' );
$w3tc_config->set( array( 'newrelic', 'account_id' ), 0 );
update_option( 'w3tc_nr_account_id', '' );
update_option( 'w3tc_nr_application_id', '' );
} else {
$monitoring_type = $w3tc_config->get_string( array( 'newrelic', 'monitoring_type' ) );
if ( 'browser' === $monitoring_type ) {
$v = $w3tc_config->get_string( array( 'newrelic', 'browser.application_id' ) );
$is_filled = ! empty( $v );
} else {
$v = $w3tc_config->get_string( array( 'newrelic', 'apm.application_name' ) );
$is_filled = ! empty( $v );
}
}
$w3tc_config->set_extension_active_frontend( 'newrelic', $is_filled );
}
/**
* Marks the New Relic API key as a secret for masked-input / clear handling.
*
* @since 2.9.2
*
* @param mixed $w3tc_descriptor Descriptor from the schema, or null.
* @param mixed $w3tc_key Config key.
*
* @return mixed
*/
public function w3tc_config_key_descriptor( $w3tc_descriptor, $w3tc_key ) {
if ( is_array( $w3tc_key ) && 'newrelic' === $w3tc_key[0] && 'api_key' === $w3tc_key[1] ) {
return array(
'type' => 'string',
'flags' => array( 'secret' => true ),
);
}
return $w3tc_descriptor;
}
}