| Server IP : 66.29.153.156 / Your IP : 216.73.216.226 Web Server : LiteSpeed System : Linux premium322.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64 User : lastyfjz ( 1521) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/lastyfjz/werepairmobile.com/wp-content/plugins/duplicator/src/Utils/ |
Upload File : |
<?php
/**
* @package Duplicator
*/
namespace Duplicator\Utils;
/**
* Upsell class, this class is used on plugin and installer
*/
class Upsell
{
/**
* Get Pro features list
*
* @return string[]
*/
public static function getProFeatureList()
{
return array(
__('Scheduled Backups', 'duplicator'),
__('Recovery Points', 'duplicator'),
__('Secure File Encryption', 'duplicator'),
__('Server to Server Import', 'duplicator'),
__('File & Database Table Filters', 'duplicator'),
__('Cloud Storage - Google Drive', 'duplicator'),
__('Cloud Storage - Amazon S3', 'duplicator'),
__('Cloud Storage - DropBox', 'duplicator'),
__('Cloud Storage - OneDrive', 'duplicator'),
__('Cloud Storage - FTP/SFTP', 'duplicator'),
__('Drag & Drop Installs', 'duplicator'),
__('Larger Site Support', 'duplicator'),
__('Multisite Network Support', 'duplicator'),
__('Email Alerts', 'duplicator'),
__('Advanced Backup Permissions', 'duplicator')
);
}
/**
* Get Pro callout features list
*
* @return string[]
*/
public static function getCalloutCTAFeatureList()
{
return array(
__('Scheduled Backups', 'duplicator'),
__('Recovery Points', 'duplicator'),
__('Secure File Encryption', 'duplicator'),
__('Server to Server Import', 'duplicator'),
__('File & Database Table Filters', 'duplicator'),
__('Cloud Storage', 'duplicator'),
__('Smart Migration Wizard', 'duplicator'),
__('Drag & Drop Installs', 'duplicator'),
__('Streamlined Installer', 'duplicator'),
__('Developer Hooks', 'duplicator'),
__('Managed Hosting Support', 'duplicator'),
__('Larger Site Support', 'duplicator'),
__('Installer Branding', 'duplicator'),
__('Migrate Duplicator Settings', 'duplicator'),
__('Regenerate SALTS', 'duplicator'),
__('Multisite Network', 'duplicator'),
__('Email Alerts', 'duplicator'),
__('Custom Search & Replace', 'duplicator'),
__('Advanced Backup Permissions', 'duplicator')
);
}
}