File "class-updates.php"

Full Path: /home/diablzlo/glucosebalnce.com/wp-content/plugins/seo-by-rank-math-pro/includes/class-updates.php
File size: 1.78 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Functions and actions related to updates.
 *
 * @since      2.0.6
 * @package    RankMathPro
 * @subpackage RankMathPro\Core
 * @author     Rank Math <support@rankmath.com>
 */

namespace RankMathPro;

use RankMath\Traits\Hooker;


defined( 'ABSPATH' ) || exit;

/**
 * Updates class
 */
class Updates {

	use Hooker;

	/**
	 * Updates that need to be run
	 *
	 * @var array
	 */
	private static $updates = [
		'2.0.6'  => 'updates/update-2.0.6.php',
		'2.1.0'  => 'updates/update-2.1.0.php',
		'2.8.1'  => 'updates/update-2.8.1.php',
		'2.12.0' => 'updates/update-2.12.0.php',
		'3.0.17' => 'updates/update-3.0.17.php',
		'3.0.26' => 'updates/update-3.0.26.php',
		'3.0.32' => 'updates/update-3.0.32.php',
		'3.0.60' => 'updates/update-3.0.60.php',
		'3.0.72' => 'updates/update-3.0.72.php',
		'3.0.81' => 'updates/update-3.0.81.php',
		'3.0.91' => 'updates/update-3.0.91.php',
		'3.0.94' => 'updates/update-3.0.94.php',
	];

	/**
	 * Register hooks.
	 */
	public function __construct() {
		$this->action( 'admin_init', 'do_updates' );
	}

	/**
	 * Check if any update is required.
	 */
	public function do_updates() {
		$installed_version = get_option( 'rank_math_pro_version', '1.0.0' );

		// Maybe it's the first install.
		if ( ! $installed_version ) {
			return;
		}

		if ( version_compare( $installed_version, rank_math_pro()->version, '<' ) ) {
			$this->perform_updates();
		}
	}

	/**
	 * Perform all updates.
	 */
	public function perform_updates() {
		$installed_version = get_option( 'rank_math_pro_version', '1.0.0' );

		foreach ( self::$updates as $version => $path ) {
			if ( version_compare( $installed_version, $version, '<' ) ) {
				include $path;
				update_option( 'rank_math_pro_version', $version );
			}
		}

		update_option( 'rank_math_pro_version', rank_math_pro()->version );
	}
}