Server IP : 15.235.198.142 / Your IP : 216.73.216.198 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/2of3/wp-content/plugins/duplicator/installer/dup-installer/src/Utils/ |
Upload File : |
<?php /** * @package Duplicator */ namespace Duplicator\Installer\Utils; /** * Installer Upsell class */ class InstallerUpsell { /** * Utils::getCampainUrl * Get upgrade campaign URL * * @param string $medium utm_medium flag * @param string $content utm_content flag * * @return string */ public static function getCampaignUrl($medium, $content = '') { $utmData = array( 'utm_medium' => $medium, 'utm_content' => $content, 'utm_source' => 'WordPress', 'utm_campaign' => 'liteplugin' ); return 'https://duplicator.com/lite-upgrade/?' . http_build_query($utmData); } /** * getCampainUrlHtml * Get upgrade campaign HTML for tooltips * * @param string[] $utmData utm_content flag * * @return string */ public static function getCampaignTooltipHTML($utmData) { $url = self::getCampaignUrl($utmData); if (function_exists('esc_url')) { $url = esc_url($url); } else { $url = \DUPX_U::esc_url($url); } ob_start(); ?> <p class="pro-tip-link" > Upgrade to <a href="<?php echo $url; ?>" target="_blank"> <b>Duplicator Pro!</b> </a> </p> <?php return ob_get_clean(); } /** * Get Pro features list * * @return string[] */ public static function getProFeatureList() { return array( 'Scheduled Backups', 'Recovery Points', 'Secure File Encryption', 'Server to Server Import', 'File & Database Table Filters', 'Cloud Storage - Google Drive', 'Cloud Storage - Amazon S3', 'Cloud Storage - DropBox', 'Cloud Storage - OneDrive', 'Cloud Storage - FTP/SFTP', 'Drag & Drop Installs', 'Larger Site Support', 'Multisite Network Support', 'Email Alerts', 'Advanced Backup Permissions' ); } /** * Get Pro callout features list * * @return string[] */ public static function getCalloutCTAFeatureList() { return array( 'Installer Branding', 'Scheduled Backups', 'Recovery Points', 'Secure File Encryption', 'Server to Server Import', 'File & Database Table Filters', 'Cloud Storage', 'Smart Migration Wizard', 'Drag & Drop Installs', 'Streamlined Installer', 'Developer Hooks', 'Managed Hosting Support', 'Larger Site Support', 'Migrate Duplicator Settings', 'Regenerate SALTS', 'Multisite Network', 'Email Alerts', 'Custom Search & Replace', 'Advanced Backup Permissions', ); } }