| Server IP : 89.108.64.180 / Your IP : 216.73.217.92 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/v-eiske.ru/dup-installer/classes/config/ |
Upload File : |
<?php
/**
* Class used to control values about the package meta data
*
* Standard: PSR-2
* @link http://www.php-fig.org/psr/psr-2 Full Documentation
*
* @package SC\DUPX\ArchiveConfig
*
*/
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
class DUPX_ArchiveConfig
{
//READ-ONLY: COMPARE VALUES
public $created;
public $version_dup;
public $version_wp;
public $version_db;
public $version_php;
public $version_os;
public $dbInfo;
//GENERAL
public $secure_on;
public $secure_pass;
public $skipscan;
public $package_name;
public $package_hash;
public $package_notes;
public $wp_tableprefix;
public $blogname;
public $wplogin_url;
public $relative_content_dir;
public $blogNameSafe;
public $exportOnlyDB;
//BASIC DB
public $dbhost;
public $dbname;
public $dbuser;
public $dbpass;
public $dbcharset;
public $dbcollation;
//ADV OPTS
public $wproot;
public $url_old;
public $opts_delete;
public $debug_mode = false;
private static $instance = null;
/**
* Loads a usable object from the archive.txt file found in the dup-installer root
*
* @param string $path The root path to the location of the server config files
*
* @return obj Returns an instance of DUPX_ArchiveConfig
*/
public static function getInstance()
{
if (self::$instance == null) {
$config_filepath = realpath(dirname(__FILE__).'/../../dup-archive__'.$GLOBALS['PACKAGE_HASH'].'.txt');
if (file_exists($config_filepath )) {
self::$instance = new DUPX_ArchiveConfig();
$file_contents = file_get_contents($config_filepath);
$ac_data = json_decode($file_contents);
foreach ($ac_data as $key => $value) {
self::$instance->{$key} = $value;
}
if (isset($_GET['debug']) && ($_GET['debug'] == 1)) {
self::$instance->debug_mode = true;
}
} else {
echo "$config_filepath doesn't exist<br/>";
}
}
//Instance Updates:
self::$instance->blogNameSafe = preg_replace("/[^A-Za-z0-9?!]/", '', self::$instance->blogname);
self::$instance->dbhost = empty(self::$instance->dbhost) ? 'localhost' : self::$instance->dbhost;
return self::$instance;
}
public function isZipArchive()
{
//$extension = strtolower(pathinfo($this->package_name)['extension']);
$extension = strtolower(pathinfo($this->package_name, PATHINFO_EXTENSION));
return ($extension == 'zip');
}
}