403Webshell
Server IP : 123.56.80.60  /  Your IP : 216.73.216.78
Web Server : Apache/2.4.54 (Win32) OpenSSL/1.1.1s PHP/7.4.33 mod_fcgid/2.3.10-dev
System : Windows NT iZhx3sob14hnz7Z 10.0 build 14393 (Windows Server 2016) i586
User : SYSTEM ( 0)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/site/20241224/spunner/wp-content/plugins/astra-sites/inc/classes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/site/20241224/spunner/wp-content/plugins/astra-sites/inc/classes/class-astra-sites-update.php
<?php
/**
 * Astra Sites Update
 *
 * @package Astra Sites
 */

if ( ! class_exists( 'Astra_Sites_Update' ) ) :

	/**
	 * Astra Sites Update
	 *
	 * @since 4.2.2
	 */
	class Astra_Sites_Update {

		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class object.
		 * @since 4.2.2
		 */
		private static $instance = null;

		/**
		 * Initiator
		 *
		 * @since 4.2.2
		 * @return object initialized object of class.
		 */
		public static function set_instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 4.2.2
		 */
		public function __construct() {

			add_action( 'astra_update_before', __CLASS__ . '::init' );
		}

		/**
		 * Update
		 *
		 * @since 4.2.2
		 * @return void
		 */
		public static function init() {

			do_action( 'astra_sites_update_before' );

			// Get auto saved version number.
			$saved_version = get_option( 'astra-sites-auto-version', '0' );

			// If equals then return.
			if ( version_compare( $saved_version, ASTRA_SITES_VER, '=' ) ) {
				return;
			}

			if ( version_compare( $saved_version, '4.2.2 ', '<' ) ) {
				// Run batch process to create the json files for existing users.
				delete_site_option( 'astra-sites-fresh-site' );
				delete_site_option( 'astra-sites-last-export-checksums' );

				$site_pages = get_option( 'astra-sites-requests' );
				if ( ! empty( $site_pages ) ) {

					// Delete all sites.
					for ( $site_page = 1; $site_page <= $site_pages; $site_page++ ) {
						delete_site_option( 'astra-sites-and-pages-page-' . $site_page );
					}
				}

				$old_options = array(
					'astra-blocks-1',
					'astra-blocks-2',
					'astra-blocks-3',
					'astra-blocks-4',
					'astra-sites-site-category',
					'astra-sites-all-site-categories',
					'astra-sites-page-builders',
					'astra-blocks-categories',
					'astra-sites-requests',
				);

				foreach ( $old_options as $option ) {
					delete_site_option( $option );
				}
				
				delete_site_transient( 'astra-sites-import-check' );
			}

			if ( version_compare( $saved_version, '4.3.1', '<' ) ) {
				if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) {
					delete_site_option( 'astra-sites-fresh-site' );
					delete_site_option( 'astra-sites-batch-status' );
					delete_site_transient( 'astra-sites-import-check' );            
				}
			}

			if ( version_compare( $saved_version, '4.4.2', '<' ) ) {

				$transient_name = 'nps-survay-form-dismissed';
				$expiration_time = get_option( '_transient_timeout_' . $transient_name );
				$nps_transient = get_transient( $transient_name );


				if ( $nps_transient && $expiration_time ) {
					$transient_duration = 2 * WEEK_IN_SECONDS;
					$creation_time = $expiration_time - $transient_duration;

					$status = get_option( 'nps-survay-form-dismiss-status', array() );
					$status['dismiss_time'] = $creation_time;
					update_option( 'nps-survay-form-dismiss-status', $status );
				}
			}

			if ( version_compare( $saved_version, '4.4.6', '<' ) ) {

				$old_dismiss_varible = get_option( 'nps-survay-form-dismiss-status' );

				if ( ! empty( $old_dismiss_varible ) ) {
					update_option( 'nps-survey-astra-sites', $old_dismiss_varible );
					delete_option( 'nps-survay-form-dismiss-status' );
				}           
			}

			// Auto update product latest version.
			update_option( 'astra-sites-auto-version', ASTRA_SITES_VER, 'no' );

			do_action( 'astra_sites_update_after' );
		}


	}

	/**
	 * Kicking this off by calling 'set_instance()' method
	 */
	Astra_Sites_Update::set_instance();

endif;

Youez - 2016 - github.com/yon3zu
LinuXploit