403Webshell
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/PageSpeed_Widget_View_FromApi.php
<?php
/**
 * File: PageSpeed_Widget_View_FromApi.php
 *
 * Template file for PageSpeed dashboard widget.
 *
 * @since 2.3.0 Update to utilize OAuth2.0 and overhaul of feature.
 *
 * @package W3TC
 */

namespace W3TC;

defined( 'ABSPATH' ) || exit;
if ( ! defined( 'W3TC' ) ) {
	die();
}

?>
<div class="metabox-holder">
	<?php
	if ( isset( $api_response_error['error'] ) && ! empty( $api_response_error['error'] ) ) {
		?>
		<div class="w3tcps_feedback">
			<div class="notice notice-error inline w3tcps_error">
				<p><?php echo wp_kses( $api_response_error['error'], Util_PageSpeed::get_allowed_tags() ); ?></p>
			</div>
		</div>
		<?php
	} else {
		// Render whatever data is available. A strategy that errored shows a soft inline notice while the
		// other still renders its gauge and metrics, avoiding a hard error state on a partial failure.
		$mobile_has_error  = ! empty( $api_response['mobile']['error'] );
		$desktop_has_error = ! empty( $api_response['desktop']['error'] );
		$mobile_error      = $mobile_has_error ? Util_PageSpeed::get_value_recursive( $api_response, array( 'mobile', 'error', 'message' ) ) : '';
		$desktop_error     = $desktop_has_error ? Util_PageSpeed::get_value_recursive( $api_response, array( 'desktop', 'error', 'message' ) ) : '';

		if ( $mobile_has_error || $desktop_has_error ) {
			?>
			<div class="w3tcps_feedback">
				<div class="notice notice-error inline w3tcps_error">
					<p><?php esc_html_e( 'Some results could not be retrieved:', 'w3-total-cache' ); ?></p>
					<?php if ( $mobile_has_error ) : ?>
						<p><?php esc_html_e( 'Mobile: ', 'w3-total-cache' ); ?><?php echo esc_html( ! empty( $mobile_error ) ? $mobile_error : __( 'Unknown error.', 'w3-total-cache' ) ); ?></p>
					<?php endif; ?>
					<?php if ( $desktop_has_error ) : ?>
						<p><?php esc_html_e( 'Desktop: ', 'w3-total-cache' ); ?><?php echo esc_html( ! empty( $desktop_error ) ? $desktop_error : __( 'Unknown error.', 'w3-total-cache' ) ); ?></p>
					<?php endif; ?>
				</div>
			</div>
			<?php
		}
		?>
		<div id="w3tcps_legend">
			<div class="w3tcps_gages">
				<div class="w3tcps_gauge_desktop">
					<?php Util_PageSpeed::print_gauge( $api_response['desktop'], 'desktop' ); ?>
				</div>
				<div class="w3tcps_gauge_mobile">
					<?php Util_PageSpeed::print_gauge( $api_response['mobile'], 'smartphone' ); ?>
				</div>
			</div>
			<?php
			echo wp_kses(
				sprintf(
					// translators: 1 opening HTML span tag, 2 opening HTML a tag to web.dev/performance-soring, 3 closing HTML a tag,
					// translators: 4 opening HTML a tag to googlechrome.github.io Lighthouse Score Calculator, 5 closing HTML a tag,
					// translators: 6 closing HTML p tag.
					__(
						'%1$sValues are estimated and may vary. The %2$sperformance score is calculated%3$s directly from these metrics. %4$sSee calculator.%5$s%6$s',
						'w3-total-cache'
					),
					'<p class="w3tcps_legend_description">',
					'<a rel="noopener" target="_blank" href="' . esc_url( 'https://web.dev/performance-scoring/?utm_source=lighthouse&amp;utm_medium=lr' ) . '">',
					'</a>',
					'<a target="_blank" href="' . esc_url( 'https://googlechrome.github.io/lighthouse/scorecalc/#FCP=1028&amp;TTI=1119&amp;SI=1028&amp;TBT=18&amp;LCP=1057&amp;CLS=0&amp;FMP=1028&amp;device=desktop&amp;version=9.0.0' ) . '">',
					'</a>',
					'</p>'
				),
				Util_PageSpeed::get_allowed_tags()
			);
			?>
			<div class="w3tcps_ranges">
				<span class="w3tcps_range w3tcps_fail"><?php esc_html_e( '0–49', 'w3-total-cache' ); ?></span>
				<span class="w3tcps_range w3tcps_average"><?php esc_html_e( '50–89', 'w3-total-cache' ); ?></span>
				<span class="w3tcps_range w3tcps_pass"><?php esc_html_e( '90–100', 'w3-total-cache' ); ?></span>
			</div>
		</div>
		<div id="w3tcps_widget_metrics_container" class="tab-content w3tcps_content">
			<div class="w3tcps_widget_metrics">
				<?php Util_PageSpeed::print_bar_combined_with_icon( $api_response, 'first-contentful-paint', 'First Contentful Paint', true ); ?>
				<?php Util_PageSpeed::print_bar_combined_with_icon( $api_response, 'speed-index', 'Speed Index', true ); ?>
				<?php Util_PageSpeed::print_bar_combined_with_icon( $api_response, 'largest-contentful-paint', 'Largest Contentful Paint', true ); ?>
				<?php Util_PageSpeed::print_bar_combined_with_icon( $api_response, 'interactive', 'Time to Interactive', true ); ?>
				<?php Util_PageSpeed::print_bar_combined_with_icon( $api_response, 'total-blocking-time', 'Total Blocking Time', true ); ?>
				<?php Util_PageSpeed::print_bar_combined_with_icon( $api_response, 'cumulative-layout-shift', 'Cumulative Layout Shift', true ); ?>
			</div>
		</div>
		<?php
	}
	?>
</div>

Youez - 2016 - github.com/yon3zu
LinuXploit