| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: Extension_NewRelic_AdminActions.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Extension_NewRelic_AdminActions
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
*/
class Extension_NewRelic_AdminActions {
/**
* Config
*
* @var Config
*/
private $_config = null;
/**
* Constructor for initializing the configuration.
*
* @return void
*/
public function __construct() {
$this->_config = Dispatcher::config();
}
/**
* Saves the New Relic application settings.
*
* @return void
*/
public function w3tc_save_new_relic() {
$service = Dispatcher::component( 'Extension_NewRelic_Service' );
$application = Util_Request::get_array( 'application' );
$application['alerts_enabled'] = empty( $application['alerts_enabled'] ) ? 'false' : 'true';
$application['rum_enabled'] = empty( $application['rum_enabled'] ) ? 'false' : 'true';
$result = $service->update_application_settings( $application );
Util_Admin::redirect(
array(
'w3tc_note' => 'new_relic_save',
),
true
);
}
}