PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
sitepress-multilingual-cms
/
classes
/
upgrade
<?php /** * WPML_Upgrade_Loader class file. * * @package WPML */ use WPML\Upgrade\Commands\AddContextIndexToStrings; use WPML\Upgrade\Commands\AddStatusIndexToStringTranslations; use WPML\Upgrade\Commands\AddStringPackageIdIndexToStrings; use WPML\Upgrade\Command\DisableOptionsAutoloading; use WPML\Upgrade\Commands\AddTranslationManagerCapToAdmin; use WPML\Upgrade\Commands\RemoveRestDisabledNotice; use WPML\Upgrade\Commands\DropCodeLocaleIndexFromLocaleMap; use WPML\Upgrade\Commands\AddPrimaryKeyToLocaleMap; use WPML\Upgrade\Commands\AddCountryColumnToLanguages; use WPML\Upgrade\Commands\AddAutomaticColumnToIclTranslateJob; use WPML\TM\Upgrade\Commands\AddReviewStatusColumnToTranslationStatus; use WPML\TM\Upgrade\Commands\AddAteCommunicationRetryColumnToTranslationStatus; use WPML\TM\Upgrade\Commands\AddAteSyncCountToTranslationJob; use WPML\TM\Upgrade\Commands\ResetTranslatorOfAutomaticJobs; /** * Class WPML_Upgrade_Loader */ class WPML_Upgrade_Loader implements IWPML_Action { const TRANSIENT_UPGRADE_IN_PROGRESS = 'wpml_core_update_in_progress'; /** * SitePress instance. * * @var SitePress */ private $sitepress; /** * Upgrade Schema instance. * * @var WPML_Upgrade_Schema */ private $upgrade_schema; /** * Settings Helper instance. * * @var WPML_Settings_Helper */ private $settings; /** * Upgrade Command Factory instance. * * @var WPML_Upgrade_Command_Factory */ private $factory; /** * Notices instance. * * @var WPML_Notices */ private $notices; /** * WPML_Upgrade_Loader constructor. * * @param SitePress $sitepress SitePress instance. * @param WPML_Upgrade_Schema $upgrade_schema Upgrade schema instance. * @param WPML_Settings_Helper $settings Settings Helper instance. * @param WPML_Notices $wpml_notices Notices instance. * @param WPML_Upgrade_Command_Factory $factory Upgrade Command Factory instance. */ public function __construct( SitePress $sitepress, WPML_Upgrade_Schema $upgrade_schema, WPML_Settings_Helper $settings, WPML_Notices $wpml_notices, WPML_Upgrade_Command_Factory $factory ) { $this->sitepress = $sitepress; $this->upgrade_schema = $upgrade_schema; $this->settings = $settings; $this->notices = $wpml_notices; $this->factory = $factory; } /** * Add hooks. */ public function add_hooks() { add_action( 'wpml_loaded', array( $this, 'wpml_upgrade' ) ); register_activation_hook( WPML_PLUGIN_PATH . '/' . WPML_PLUGIN_FILE, array( $this, 'wpml_upgrade' ) ); } /** * Upgrade WPML plugin. */ public function wpml_upgrade() { if ( get_transient( self::TRANSIENT_UPGRADE_IN_PROGRESS ) ) { return; } $commands = [ $this->factory->create_command_definition( 'WPML_Upgrade_Localization_Files', [ $this->sitepress ], [ 'admin' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Fix_Non_Admin_With_Admin_Cap', [], [ 'admin' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Table_Translate_Job_For_3_9_0', [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Remove_Translation_Services_Transient', [], [ 'admin' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Display_Mode_For_Posts', [ $this->sitepress, $this->settings, $this->notices ], [ 'admin', 'ajax' ] ), $this->factory->create_command_definition( 'WPML_Add_UUID_Column_To_Translation_Status', [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Element_Type_Length_And_Collation', [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Add_Word_Count_Column_To_Strings', [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Media_Without_Language', [ $this->upgrade_schema->get_wpdb(), $this->sitepress->get_default_language() ], [ 'admin', 'ajax' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Media_Duplication_In_Core', [ $this->sitepress, $this->upgrade_schema, $this->notices ], [ 'admin', 'ajax' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Chinese_Flags', [ 'wpdb' => $this->sitepress->wpdb() ], [ 'admin' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Add_Editor_Column_To_Icl_Translate_Job', [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_WPML_Site_ID', [], [ 'admin' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_WPML_Site_ID_Remaining', [], [ 'admin' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Add_Location_Column_To_Strings', [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Add_Wrap_Column_To_Translate', [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( 'WPML_Upgrade_Add_Wrap_Column_To_Strings', [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( AddContextIndexToStrings::class, array( $this->upgrade_schema ), array( 'admin', 'ajax', 'front-end' ) ), $this->factory->create_command_definition( AddStatusIndexToStringTranslations::class, array( $this->upgrade_schema ), array( 'admin', 'ajax', 'front-end' ) ), $this->factory->create_command_definition( AddStringPackageIdIndexToStrings::class, array( $this->upgrade_schema ), array( 'admin', 'ajax', 'front-end' ) ), $this->factory->create_command_definition( DisableOptionsAutoloading::class, [], [ 'admin' ] ), $this->factory->create_command_definition( RemoveRestDisabledNotice::class, [], [ 'admin' ] ), $this->factory->create_command_definition( ResetTranslatorOfAutomaticJobs::class, [], [ 'admin' ] ), $this->factory->create_command_definition( DropCodeLocaleIndexFromLocaleMap::class, array( $this->upgrade_schema ), array( 'admin', 'ajax', 'front-end' ) ), $this->factory->create_command_definition( AddPrimaryKeyToLocaleMap::class, array( $this->upgrade_schema ), array( 'admin', 'ajax', 'front-end' ) ), $this->factory->create_command_definition( AddCountryColumnToLanguages::class, [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( AddAutomaticColumnToIclTranslateJob::class, [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( AddTMAllowedOption::class, [], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( AddTranslationManagerCapToAdmin::class, [], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( AddReviewStatusColumnToTranslationStatus::class, [ $this->upgrade_schema ], [ 'admin', 'ajax', 'front-end' ] ), $this->factory->create_command_definition( AddAteCommunicationRetryColumnToTranslationStatus::class, [ $this->upgrade_schema ], [ 'admin', 'ajax' ] ), $this->factory->create_command_definition( AddAteSyncCountToTranslationJob::class, [ $this->upgrade_schema ], [ 'admin', 'ajax' ] ), $this->factory->create_command_definition( 'WPML_TM_Add_TP_ID_Column_To_Translation_Status', [ $this->upgrade_schema ], array( 'admin', 'ajax', 'front-end' ) ), $this->factory->create_command_definition( 'WPML_TM_Add_TP_Revision_And_TS_Status_Columns_To_Translation_Status', [ $this->upgrade_schema ], array( 'admin', 'ajax', 'front-end' ) ), $this->factory->create_command_definition( 'WPML_TM_Add_TP_Revision_And_TS_Status_Columns_To_Core_Status', [ $this->upgrade_schema ], array( 'admin', 'ajax', 'front-end' ) ), ]; $upgrade = new WPML_Upgrade( $commands, $this->sitepress, $this->factory ); $upgrade->run(); } }
[-] class-wpml-tm-upgrade-loader.php
[edit]
[-] class-wpml-upgrade-loader-factory.php
[edit]
[+]
commands
[-] class-wpml-upgrade.php
[edit]
[-] interface-iwpml-upgrade-command.php
[edit]
[-] class-wpml-tm-upgrade-loader-factory.php
[edit]
[-] class-wpml-upgrade-command-factory.php
[edit]
[-] class-wpml-upgrade-loader.php
[edit]
[-] class-wpml-upgrade-command-definition.php
[edit]
[-] class-wpml-upgrade-schema.php
[edit]
[+]
..
[-] class-wpml-upgrade-localizations-files.php
[edit]
[-] CommandsStatus.php
[edit]
[-] class-wpml-upgrade-run-all.php
[edit]