ruạṛ
<?php namespace DeliciousBrains\WPMDB\Pro; use DeliciousBrains\WPMDB\Common\Upgrades\UpgradeRoutinesManager; use DeliciousBrains\WPMDB\Pro\Addon\Addon; use DeliciousBrains\WPMDB\Common\Error\Logger; use DeliciousBrains\WPMDB\Common\Filesystem\RecursiveScanner; use DeliciousBrains\WPMDB\Pro\Addon\AddonsFacade; use DeliciousBrains\WPMDB\Common\MF\MediaFilesAddon; use DeliciousBrains\WPMDB\Common\MF\MediaFilesLocal; use DeliciousBrains\WPMDB\Pro\Backups\BackupsManager; use DeliciousBrains\WPMDB\Pro\Beta\BetaManager; use DeliciousBrains\WPMDB\Pro\Cli\Export; use DeliciousBrains\WPMDB\Pro\Cli\Extra\Cli; use DeliciousBrains\WPMDB\Pro\Cli\Extra\CliAddon; use DeliciousBrains\WPMDB\Pro\Cli\Extra\Setting; use DeliciousBrains\WPMDB\Pro\Compatibility\Layers\Platforms\Platforms; use DeliciousBrains\WPMDB\Pro\MF\CliCommand\MediaFilesCli; use DeliciousBrains\WPMDB\Pro\MF\MediaFilesRemote; use DeliciousBrains\WPMDB\Pro\Migration\Flush; use DeliciousBrains\WPMDB\Pro\Migration\Connection; use DeliciousBrains\WPMDB\Pro\Migration\FinalizeComplete; use DeliciousBrains\WPMDB\Pro\Migration\Tables\Local; use DeliciousBrains\WPMDB\Pro\Migration\Tables\Remote; use DeliciousBrains\WPMDB\Pro\MST\CliCommand\MultisiteToolsAddonCli; use DeliciousBrains\WPMDB\Pro\MST\MediaFilesCompat; use DeliciousBrains\WPMDB\Pro\MST\MultisiteToolsAddon; use DeliciousBrains\WPMDB\Pro\Plugin\ProPluginManager; use DeliciousBrains\WPMDB\Common\Queue\Manager; use DeliciousBrains\WPMDB\Common\Queue\QueueHelper; use DeliciousBrains\WPMDB\Pro\TPF\Cli\ThemePluginFilesCli; use DeliciousBrains\WPMDB\Common\TPF\ThemePluginFilesAddon; use DeliciousBrains\WPMDB\Common\TPF\ThemePluginFilesFinalize; use DeliciousBrains\WPMDB\Common\TPF\ThemePluginFilesLocal; use DeliciousBrains\WPMDB\Pro\TPF\ThemePluginFilesRemote; use DeliciousBrains\WPMDB\Common\TPF\TransferCheck; use DeliciousBrains\WPMDB\Common\Transfers\Files\Chunker; use DeliciousBrains\WPMDB\Common\Transfers\Files\Excludes; use DeliciousBrains\WPMDB\Common\Transfers\Files\FileProcessor; use DeliciousBrains\WPMDB\Pro\Transfers\Files\IncrementalSizeController; use DeliciousBrains\WPMDB\Pro\Transfers\Files\Payload; use DeliciousBrains\WPMDB\Pro\Transfers\Files\PluginHelper; use DeliciousBrains\WPMDB\Pro\Transfers\Files\TransferManager; use DeliciousBrains\WPMDB\Common\Transfers\Files\Util; use DeliciousBrains\WPMDB\Pro\Transfers\Receiver; use DeliciousBrains\WPMDB\Pro\Transfers\Sender; use DeliciousBrains\WPMDB\Pro\UI\Template; use DeliciousBrains\WPMDB\Pro\RemoteUpdates\RemoteUpdatesManager; use DeliciousBrains\WPMDB\Pro\MF\Manager as MF_Manager; use DeliciousBrains\WPMDB\Pro\TPF\Manager as TPF_Manager; class ClassMap extends \DeliciousBrains\WPMDB\ClassMap { public $import; public $api; public $license; public $download; public $addon; public $template; public $pro_plugin_manager; public $usage_tracking; public $logger; public $beta_manager; public $connection; public $finalize_complete; public $backups_manager; public $cli_export; public $transfers_util; public $transfers_chunker; public $transfers_payload; public $transfers_receiver; public $transfers_sender; public $transfers_excludes; public $queue_manager; public $transfers_manager; public $transfers_file_processor; public $common_flush; public $media_files_addon; public $media_files_cli; public $media_files_addon_remote; public $media_files_addon_local; public $tp_addon_finalize; public $tp_addon; public $tp_addon_transfer_check; public $tp_addon_local; public $tp_addon_remote; public $tp_cli; public $media_files_manager; public $theme_plugin_manager; public $mst_addon; public $mst_addon_cli; public $media_files_compat; public $cli_addon; public $cli_addon_cli; public $cli_settings; public $extra_cli_manager; public $multisite_tools_manager; /** * @var Remote */ public $remote_tables; /** * @var Local */ public $local_tables; /** * @var Connection\Remote */ public $remote_connection; /** * @var Connection\Local */ public $local_connection; /** * @var PluginHelper */ public $transfers_plugin_helper; /** * @var QueueHelper */ public $transfers_queue_helper; /** * @var RecursiveScanner */ public $recursive_scanner; /** * @var AddonsFacade */ public $addons_facade; /** * @var IncrementalSizeController */ private $incremental_size_controller; /** * @var Platforms */ private $hosting_platform; /** * @var RemoteUpdatesManager */ public $remote_updates_manager; public function __construct() { parent::__construct(); $this->import = new Import( $this->http, $this->migration_state_manager, $this->error_log, $this->filesystem, $this->backup_export, $this->table, $this->form_data, $this->properties, $this->WPMDBRestAPIServer, $this->http_helper ); $this->download = new Download( $this->properties, $this->settings ); $this->addon = new Addon( $this->error_log, $this->settings, $this->properties, $this->download ); $this->common_flush = new \DeliciousBrains\WPMDB\Common\Migration\Flush($this->http_helper, $this->util, $this->remote_post, $this->http); $this->flush = new Flush($this->http_helper, $this->util, $this->remote_post, $this->http); $this->upgrade_routines_manager = new UpgradeRoutinesManager($this->assets, $this->profile_manager); $this->pro_plugin_manager = new ProPluginManager( $this->settings, $this->assets, $this->util, $this->table, $this->http, $this->filesystem, $this->multisite, $this->addon, $this->download, $this->properties, $this->migration_helper, $this->WPMDBRestAPIServer, $this->http_helper, $this->template_base, $this->notice, $this->profile_manager, $this->upgrade_routines_manager ); $this->template = new Template( $this->settings, $this->util, $this->profile_manager, $this->filesystem, $this->table, $this->notice, $this->form_data, $this->addon, $this->properties, $this->pro_plugin_manager ); $this->hosting_platform = new Platforms(); $this->usage_tracking = new UsageTracking( $this->settings, $this->filesystem, $this->error_log, $this->template, $this->form_data, $this->state_data_container, $this->properties, $this->migration_state_manager, $this->http, $this->http_helper, $this->WPMDBRestAPIServer ); $this->logger = new Logger(); $this->api = new Api( $this->util, $this->settings, $this->error_log, $this->properties, $this->usage_tracking ); $this->license = new License( $this->api, $this->settings, $this->util, $this->migration_state_manager, $this->download, $this->http, $this->error_log, $this->http_helper, $this->scrambler, $this->remote_post, $this->properties, $this->WPMDBRestAPIServer ); $this->beta_manager = new BetaManager( $this->util, $this->addon, $this->api, $this->settings, $this->template, $this->download, $this->properties ); $this->local_connection = new Connection\Local( $this->http, $this->http_helper, $this->properties, $this->license, $this->remote_post, $this->util, $this->WPMDBRestAPIServer ); $this->remote_connection = new Connection\Remote( $this->scrambler, $this->http, $this->http_helper, $this->properties, $this->error_log, $this->license, $this->remote_post, $this->util, $this->table, $this->form_data, $this->settings, $this->filesystem, $this->multisite, $this->table_helper, $this->backup_export ); $this->local_tables = new Local(); $this->finalize_complete = new FinalizeComplete( $this->scrambler, $this->migration_state_manager, $this->http, $this->http_helper, $this->properties, $this->error_log, $this->migration_manager, $this->form_data, $this->finalize_migration, $this->settings, $this->WPMDBRestAPIServer, $this->flush ); $this->remote_tables = new Remote( $this->scrambler, $this->settings, $this->migration_state_manager, $this->http, $this->http_helper, $this->table_helper, $this->error_log, $this->properties, $this->form_data, $this->migration_manager, $this->table, $this->backup_export, $this->finalize_complete, $this->WPMDBRestAPIServer ); $this->cli_export = new Export( $this->form_data, $this->util, $this->cli_manager, $this->table, $this->error_log, $this->initiate_migration, $this->finalize_migration, $this->http_helper, $this->migration_manager, $this->migration_state_manager ); $this->backups_manager = new BackupsManager( $this->http_helper, $this->filesystem, $this->WPMDBRestAPIServer ); $this->remote_updates_manager = new RemoteUpdatesManager( $this->http_helper, $this->http, $this->remote_post, $this->WPMDBRestAPIServer, $this->migration_state_manager, $this->properties, $this->settings, $this->util, $this->license ); // Transfers classes $this->transfers_util = new Util( $this->filesystem, $this->http, $this->error_log, $this->http_helper, $this->remote_post, $this->settings, $this->migration_state_manager, $this->util ); $this->transfers_chunker = new Chunker( $this->transfers_util ); $this->transfers_payload = new Payload( $this->transfers_util, $this->transfers_chunker, $this->filesystem, $this->http, $this->util ); $this->transfers_receiver = new Receiver( $this->transfers_util, $this->transfers_payload, $this->settings, $this->error_log, $this->filesystem ); $this->transfers_sender = new Sender( $this->transfers_util, $this->transfers_payload ); $this->transfers_excludes = new Excludes(); $this->queue_manager = new Manager( $this->properties, $this->state_data_container, $this->migration_state_manager, $this->form_data ); $this->incremental_size_controller = new IncrementalSizeController(); $this->transfers_manager = new TransferManager( $this->queue_manager, $this->transfers_payload, $this->transfers_util, $this->incremental_size_controller, $this->http_helper, $this->http, $this->transfers_receiver, $this->transfers_sender, $this->full_site_export ); $this->recursive_scanner = new RecursiveScanner($this->filesystem, $this->transfers_util); $this->transfers_file_processor = new FileProcessor( $this->filesystem, $this->http, $this->recursive_scanner ); $this->transfers_plugin_helper = new PluginHelper( $this->filesystem, $this->properties, $this->http, $this->http_helper, $this->settings, $this->migration_state_manager, $this->scrambler, $this->transfers_file_processor, $this->transfers_util, $this->queue_manager, $this->queue_manager, $this->state_data_container, $this->transfers_sender, $this->transfers_receiver ); $this->transfers_queue_helper = new QueueHelper( $this->filesystem, $this->http, $this->http_helper, $this->transfers_util, $this->queue_manager, $this->util ); /* Start MF Section */ $this->media_files_addon_local = new MediaFilesLocal( $this->form_data, $this->http, $this->util, $this->http_helper, $this->WPMDBRestAPIServer, $this->transfers_manager, $this->transfers_util, $this->transfers_file_processor, $this->transfers_queue_helper, $this->queue_manager, $this->transfers_plugin_helper, $this->profile_manager ); $this->media_files_addon_remote = new MediaFilesRemote( $this->transfers_plugin_helper ); $this->media_files_cli = new MediaFilesCli( $this->addon, $this->properties, $this->cli, $this->cli_manager, $this->util, $this->state_data_container, $this->transfers_util, $this->filesystem ); $this->media_files_manager = new MF_Manager(); /* End MF Section */ /* Start TPF Section */ $this->tp_addon_transfer_check = new TransferCheck( $this->form_data, $this->http, $this->error_log ); $this->tp_addon_local = new ThemePluginFilesLocal( $this->transfers_util, $this->util, $this->transfers_file_processor, $this->queue_manager, $this->transfers_manager, $this->migration_state_manager, $this->http, $this->filesystem, $this->tp_addon_transfer_check, $this->WPMDBRestAPIServer, $this->http_helper, $this->transfers_queue_helper ); $this->tp_addon_remote = new ThemePluginFilesRemote( $this->transfers_util, $this->transfers_file_processor, $this->queue_manager, $this->transfers_manager, $this->transfers_receiver, $this->http, $this->http_helper, $this->migration_state_manager, $this->settings, $this->properties, $this->transfers_sender, $this->filesystem, $this->scrambler, $this->transfers_plugin_helper ); $this->tp_cli = new ThemePluginFilesCli( $this->addon, $this->properties, $this->template, $this->filesystem, $this->profile_manager, $this->util, $this->transfers_util, $this->transfers_receiver, $this->tp_addon_finalize, $this->transfers_plugin_helper, $this->cli ); $this->theme_plugin_manager = new TPF_Manager(); /* End TPF Section */ /* Start MST Section */ $this->media_files_compat = new MediaFilesCompat( $this->util, $this->filesystem ); $this->mst_addon = new MultisiteToolsAddon( $this->addon, $this->properties, $this->multisite, $this->util, $this->migration_state_manager, $this->table, $this->table_helper, $this->form_data, $this->template, $this->profile_manager, $this->dynamic_props, $this->filesystem, $this->media_files_compat ); $this->mst_addon_cli = new MultisiteToolsAddonCli( $this->addon, $this->properties, $this->multisite, $this->util, $this->migration_state_manager, $this->table, $this->table_helper, $this->form_data, $this->template, $this->profile_manager, $this->cli, $this->dynamic_props, $this->filesystem, $this->media_files_compat ); $this->multisite_tools_manager = new \DeliciousBrains\WPMDB\Pro\MST\Manager(); /* End MST Section*/ /* Start CLI Section */ $this->connection = new Connection(); $this->cli_addon = new CliAddon( $this->addon, $this->properties ); $this->cli_addon_cli = new Cli( $this->form_data, $this->util, $this->cli_manager, $this->table, $this->error_log, $this->initiate_migration, $this->finalize_migration, $this->http_helper, $this->migration_manager, $this->migration_state_manager, $this->connection, $this->backup_export, $this->properties, $this->multisite, $this->import ); $this->cli_settings = new Setting( $this->form_data, $this->util, $this->cli_manager, $this->table, $this->error_log, $this->initiate_migration, $this->finalize_migration, $this->http_helper, $this->migration_manager, $this->migration_state_manager, $this->license, $this->settings ); $this->extra_cli_manager = new \DeliciousBrains\WPMDB\Pro\Cli\Extra\Manager(); /* End CLI Section */ $this->addons_facade = new AddonsFacade($this->license, [ $this->media_files_manager, $this->theme_plugin_manager, $this->multisite_tools_manager, $this->extra_cli_manager, ]); } }
cải xoăn