📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: StorageController.php
<?php namespace Duplicator\Controllers; use DUP_UI_Dialog; use Duplicator\Core\Views\TplMng; class StorageController { /** * Render storages page * * @return void */ public static function render() { TplMng::getInstance()->render('mocks/storage/storage', array( 'storages' => self::getStoragesData() ), true); } /** * Fet storage alert dialog box * * @param string $utm_medium UTM medium for the upsell link * * @return DUP_UI_Dialog */ public static function getDialogBox($utm_medium) { require_once(DUPLICATOR_PLUGIN_PATH . '/classes/ui/class.ui.dialog.php'); $storageAlert = new DUP_UI_Dialog(); $storageAlert->title = __('Advanced Storage', 'duplicator'); $storageAlert->height = 600; $storageAlert->width = 550; $storageAlert->okText = ''; $storageAlert->message = TplMng::getInstance()->render('mocks/storage/popup', array( 'storages' => self::getStoragesData(), 'utm_medium' => $utm_medium, ), false); $storageAlert->initAlert(); return $storageAlert; } /** * Returns the storage data for the view * * @return array[] */ private static function getStoragesData() { return array( array( 'title' => __('Amazon S3', 'duplicator'), 'label' => __('Amazon S3', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/aws.svg', ), array( 'title' => __('Google Drive', 'duplicator'), 'label' => __('Google Drive', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/google-drive.svg', ), array( 'title' => __('OneDrive', 'duplicator'), 'label' => __('OneDrive', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/onedrive.svg', ), array( 'title' => __('DropBox', 'duplicator'), 'label' => __('DropBox', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/dropbox.svg', ), array( 'title' => __('FTP/SFTP', 'duplicator'), 'label' => __('FTP/SFTP', 'duplicator'), 'fa-class' => 'fas fa-network-wired', ), array( 'title' => __('Google Cloud Storage', 'duplicator'), 'label' => __('Google Cloud Storage', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/google-cloud.svg', ), array( 'title' => __('Back Blaze', 'duplicator'), 'label' => __('Back Blaze', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/backblaze.svg', ), array( 'title' => __('Cloudflare R2', 'duplicator'), 'label' => __('Cloudflare R2', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/cloudflare.svg', ), array( 'title' => __('DigitalOcean Spaces', 'duplicator'), 'label' => __('DigitalOcean Spaces', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/digital-ocean.svg', ), array( 'title' => __('Vultr Object Storage', 'duplicator'), 'label' => __('Vultr Object Storage', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/vultr.svg', ), array( 'title' => __('Dream Objects', 'duplicator'), 'label' => __('Dream Objects', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/dreamhost.svg', ), array( 'title' => __('Wasabi', 'duplicator'), 'label' => __('Wasabi', 'duplicator'), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/wasabi.svg', ), array( 'title' => __('S3-Compatible Provider', 'duplicator'), 'label' => __( 'S3-Compatible (Generic) Cloudian, Cloudn, Connectria, Constant, Exoscal, Eucalyptus, Nifty, Nimbula, Minio, etc...', 'duplicator' ), 'iconUrl' => DUPLICATOR_PLUGIN_URL . 'assets/img/aws.svg', ), ); } }
Save