%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/businessmultisite/wp-content/plugins/duplicator-pro/tools/
Upload File :
Create Path :
Current File : /var/www/businessmultisite/wp-content/plugins/duplicator-pro/tools/DuplicatorPhpVersionCheck.php

<?php
/**
 * These functions are performed before including any other Duplicator file so
 * do not use any Duplicator library or feature and use code compatible with PHP 5.2
 *
 */
defined('ABSPATH') || exit;

// In the future it will be included on both PRO and LITE so you need to check if the define exists.
if (!class_exists('DuplicatorPhpVersionCheck')) {

    class DuplicatorPhpVersionCheck
    {
        protected static $minVer       = null;
        protected static $suggestedVer = null;

        public static function check($minVer, $suggestedVer)
        {
            self::$minVer       = $minVer;
            self::$suggestedVer = $suggestedVer;

            if (version_compare(PHP_VERSION, self::$minVer, '<')) {
                if (is_multisite()) {
                    add_action('network_admin_notices', array(__CLASS__, 'notice'));
                } else {
                    add_action('admin_notices', array(__CLASS__, 'notice'));
                }
                return false;
            } else {
                return true;
            }
        }

        public static function notice()
        {
            if (!current_user_can('export')) {
                return;
            }
            ?>
            <div class="error notice">
                <p>
                    <?php
                    $str = 'DUPLICATOR PRO: ' . __('Your system is running a very old version of PHP (%s) that is no longer suppported by Duplicator.', 'duplicator-pro');
                    printf($str, PHP_VERSION);
                    ?>
                </p>
                <p>
                    <?php
                    $str = __('Please ask your host to update to PHP %1s or greater. If this is impossible, ', 'duplicator-pro');
                    $str .= '<a href="https://snapcreek.com/ticket" target="blank">';
                    $str .= __('open a ticket', 'duplicator-pro');
                    $str .= '</a>';
                    $str .= __(' to request a previous version of Duplicator compatible with PHP %2s.', 'duplicator-pro');
                    printf($str, self::$suggestedVer, PHP_VERSION);
                    ?>
                </p>
            </div>
            <?php
        }
    }

}

Zerion Mini Shell 1.0