| 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 : /home/httpd/html/baberankings.com/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: Extension_NewRelic_Page.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Extension_NewRelic_Page
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
*/
class Extension_NewRelic_Page extends Base_Page_Settings {
/**
* Current page
*
* @var string
*/
protected $_page = 'w3tc_monitoring';
/**
* Renders the content for the New Relic extension page.
*
* @return void
*/
public function render_content() {
$w3tc_config = Dispatcher::config();
$monitoring_type = $w3tc_config->get_string( array( 'newrelic', 'monitoring_type' ) );
if ( 'browser' === $monitoring_type ) {
return;
}
$nerser = Dispatcher::component( 'Extension_NewRelic_Service' );
$new_relic_configured = $w3tc_config->get_string( array( 'newrelic', 'api_key' ) ) && $w3tc_config->get_string( array( 'newrelic', 'apm.application_name' ) );
$verify_running = $nerser->verify_running();
$application_settings = array();
try {
$application_settings = $nerser->get_application_settings();
} catch ( \Exception $ex ) {
$application_settings = array();
}
$view_metric = Util_Request::get_boolean( 'view_metric', false );
if ( ! empty( $view_metric ) ) {
$metric_names = $nerser->get_metric_names( Util_Request::get_string( 'regex', '' ) );
}
require W3TC_DIR . '/Extension_NewRelic_Page_View_Apm.php';
}
}