403Webshell
Server IP : 104.21.80.248  /  Your IP : 172.71.28.155
Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30
System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586
User : SYSTEM ( 0)
PHP Version : 5.6.30
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Inetpub/www/training/wp-content/themes/flatsome/inc/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Inetpub/www/training/wp-content/themes/flatsome/inc/functions/function-site-health.php
<?php

/**
 * Adds site status tests for Flatsome registration.
 *
 * @param array $tests An associative array of tests.
 * @return array
 */
function flatsome_site_status_tests( $tests ) {
	$tests['direct']['flatsome_registration'] = array(
		'label' => __( 'Flatsome registration', 'flatsome' ),
		'test'  => 'flatsome_site_health_registration_test',
	);

	return $tests;
}
add_filter( 'site_status_tests', 'flatsome_site_status_tests' );

/**
 * Performs the registration status test.
 *
 * @return array
 */
function flatsome_site_health_registration_test() {
	if ( is_a( flatsome_envato()->registration, 'Flatsome_Envato_Registration' ) ) {
		return array(
			'test'        => 'flatsome_token',
			'label'       => __( 'You should register Flatsome with a purchase code', 'flatsome' ),
			'status'      => 'critical',
			'badge'       => array(
				'label' => __( 'Security', 'flatsome' ),
				'color' => 'blue',
			),
			'description' => sprintf(
				'<p>%s</p>',
				__( 'Your copy of Flatsome is registered with a personal Envato token. Please register Flatsome with a purchase code instead to ensure your site receives updates in the future.', 'flatsome' )
			),
			'actions'     => sprintf(
				'<p><a href="%s">%s</a></p>',
				esc_url( admin_url( 'admin.php?page=flatsome-panel' ) ),
				__( 'Register with a purchase code now', 'flatsome' )
			),
		);
	}

	$errors = flatsome_envato()->registration->get_errors();
	$result = array(
		'test'        => 'flatsome_registration',
		'label'       => __( 'Flatsome is registered', 'flatsome' ),
		'status'      => 'good',
		'badge'       => array(
			'label' => __( 'Security', 'flatsome' ),
			'color' => 'blue',
		),
		'description' => sprintf( '<p>%s</p>', __( 'Register Flatsome to receive updates.', 'flatsome' ) ),
		'actions'     => '',
	);

	if ( ! flatsome_envato()->registration->is_registered() ) {
		$result['status']  = 'critical';
		$result['label']   = __( 'Flatsome is not registered', 'flatsome' );
		$result['actions'] = sprintf(
			'<p><a href="%s">%s</a></p>',
			esc_url( admin_url( 'admin.php?page=flatsome-panel' ) ),
			__( 'Register now', 'flatsome' )
		);
	} elseif ( ! empty( $errors ) ) {
		$result['status']      = 'critical';
		$result['label']       = __( 'Flatsome was unable to receive the latest update', 'flatsome' );
		$result['description'] = sprintf( '<p>%s</p>', implode( '</p><p>', $errors ) );
		?>
		<p>
			<a href="<?php echo esc_url_raw( admin_url( 'admin.php?page=flatsome-panel' ) ); ?>">
				<?php esc_html_e( 'Manage registration', 'flatsome' ); ?>
			</a>
		</p>
		<p>
			<a href="<?php echo esc_url_raw( UXTHEMES_ACCOUNT_URL ); ?>" target="_blank" rel="noopener noreferrer">
				<?php esc_html_e( 'Manage your licenses', 'flatsome' ); ?>
			</a>
		</p>
		<?php
		$result['actions'] = ob_get_clean();
	}

	return $result;
}

Youez - 2016 - github.com/yon3zu
LinuXploit