__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php


namespace WPForms\Pro\Admin;

/**
 * Site Health in WPForms PRO Info.
 *
 * @since 1.6.3
 */
class SiteHealth extends \WPForms\Admin\SiteHealth {

	/**
	 * Load an integration.
	 *
	 * @since 1.6.3
	 */
	protected function hooks() {

		add_filter( 'debug_information', [ $this, 'add_info_section' ] );

		add_filter( 'site_status_tests', [ $this, 'license_check_register' ] );
	}

	/**
	 * Add or modify which site status tests are run on a site.
	 *
	 * @since 1.6.3
	 *
	 * @param array $tests Site health tests registered.
	 *
	 * @return array
	 */
	public function license_check_register( $tests ) {

		$tests['direct']['wpforms'] = [
			'label' => esc_html__( 'WPForms', 'wpforms' ),
			'test'  => [ $this, 'license_check' ],
		];

		return $tests;
	}

	/**
	 * License checker.
	 *
	 * @since 1.6.3
	 */
	public function license_check() {

		$license = wpforms()->obj( 'license' );

		if ( empty( $license ) || ! $license->get() ) {
			$status = __( 'not detected', 'wpforms' );
		} else {
			$from_cache = wpforms()->obj( 'license_api_validate_key_cache' )->get();

			$status =
				! empty( $from_cache ) ?
				$license->validate_from_response( (object) $from_cache, false, false, true ) :
				$license->validate_key( $license->get(), false, false, true );
		}

		$result = [
			'label'       => sprintf( /* translators: %s - license status. */
				esc_html__( 'Your WPForms license is %s', 'wpforms' ),
				$status
			),
			'status'      => $status === 'valid' ? 'good' : 'critical',
			'badge'       => [
				'label' => esc_html__( 'Security', 'wpforms' ),
				'color' => $status === 'valid' ? 'blue' : 'red',
			],
			'description' => sprintf(
				'<p>%s</p>',
				esc_html__( 'You have access to updates, addons, new features, and more.', 'wpforms' )
			),
			'actions'     => '',
			'test'        => 'wpforms',
		];

		if ( $status === 'valid' ) {
			return $result;
		}

		$result['description'] = sprintf(
			'<p>%1$s</p>
				<ul>
					<li>❌ %2$s</li>
					<li>❌ %3$s</li>
					<li>❌ %4$s</li>
					<li>❌ %5$s</li>
					<li>❌ %6$s</li>
					<li>❌ %7$s</li>
					<li>❌ %8$s</li>
					<li>❌ %9$s</li>
				</ul>',
			esc_html__( 'A valid license is required for following benefits. Please read carefully.', 'wpforms' ),
			esc_html__( 'Plugin and Addon Updates', 'wpforms' ),
			esc_html__( 'New Features', 'wpforms' ),
			esc_html__( 'New Addons and Integrations', 'wpforms' ),
			esc_html__( 'WordPress Compatibility Updates', 'wpforms' ),
			esc_html__( 'Marketing and Payment Integration Compatibility Updates', 'wpforms' ),
			esc_html__( 'Security Improvements', 'wpforms' ),
			esc_html__( 'World Class Support', 'wpforms' ),
			esc_html__( 'Plugin and Addon Access', 'wpforms' )
		);
		$result['actions']     = sprintf(
			'<p><a href="%s">%s</a></p>',
			'https://wpforms.com/account/',
			esc_html__( 'Login to your WPForms account to update', 'wpforms' )
		);

		return $result;
	}

	/**
	 * Add WPForms section to Info tab.
	 *
	 * @since 1.6.3
	 *
	 * @param array $debug_info Array of all information.
	 *
	 * @return array Array with added WPForms info section.
	 */
	public function add_info_section( $debug_info ) {

		$debug_info = parent::add_info_section( $debug_info );

		$fields = [];

		$fields['total_entries'] = [
			'label' => esc_html__( 'Total entries', 'wpforms' ),
			'value' => wpforms()->obj( 'entry' )->get_entries( [], true ),
		];

		// We should be aware if license instance exists before using it.
		if ( wpforms()->obj( 'license' ) === null ) {
			return $debug_info;
		}

		$license        = wpforms()->obj( 'license' )->get();
		$license_status = ucfirst( wpforms()->obj( 'license' )->validate_key( $license, false, false, true ) );

		if ( $license_status !== 'Valid' && ! empty( $license ) ) {
			$license_status .= " ($license)";
		}

		$fields['license_status'] = [
			'label' => esc_html__( 'License status', 'wpforms' ),
			'value' => $license_status,
		];

		$fields['license'] = [
			'label' => esc_html__( 'License key type', 'wpforms' ),
			'value' => ucfirst( wpforms_get_license_type() ),
		];

		$fields['license_location'] = [
			'label' => esc_html__( 'License key location', 'wpforms' ),
			'value' => wpforms()->obj( 'license' )->get_key_location(),
		];

		$debug_info['wpforms']['fields'] = wpforms_array_insert(
			$debug_info['wpforms']['fields'],
			$fields,
			'total_forms'
		);

		return $debug_info;
	}
}

Filemanager

Name Type Size Permission Actions
Addons Folder 0750
Builder Folder 0750
Education Folder 0750
Entries Folder 0750
Pages Folder 0750
Settings Folder 0750
AdminBarMenu.php File 2.26 KB 0640
CoreInfoCache.php File 2.04 KB 0640
DashboardWidget.php File 31.6 KB 0640
PluginList.php File 26.46 KB 0640
PluginListDisabler.php File 1.83 KB 0640
SiteHealth.php File 4.31 KB 0640
Filemanager