Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
duplicator
/
installer
/
dup-installer
/
classes
/
validation
/
tests
:
class.validation.test.disk.space.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Validation object * * Standard: PSR-2 * * @link http://www.php-fig.org/psr/psr-2 Full Documentation * * @package SC\DUPX\U */ defined('ABSPATH') || defined('DUPXABSPATH') || exit; use Duplicator\Installer\Core\Params\PrmMng; use Duplicator\Installer\Models\ScanInfo; use Duplicator\Libs\Snap\SnapIO; class DUPX_Validation_test_disk_space extends DUPX_Validation_abstract_item { private $freeSpace = 0; private $archiveSize = 0; private $extractedSize = 0; protected function runTest() { if (!function_exists('disk_free_space')) { return self::LV_SKIP; } // if home path is root path is necessary do a trailingslashit $realPath = SnapIO::safePathTrailingslashit(PrmMng::getInstance()->getValue(PrmMng::PARAM_PATH_NEW)); $this->freeSpace = @disk_free_space($realPath); $this->archiveSize = DUPX_Conf_Utils::archiveExists() ? DUPX_Conf_Utils::archiveSize() : 1; $this->extractedSize = ScanInfo::getInstance()->getUSize(); if ($this->freeSpace && $this->archiveSize > 0 && $this->freeSpace > ($this->extractedSize + $this->archiveSize)) { return self::LV_GOOD; } else { return self::LV_SOFT_WARNING; } } public function getTitle() { return 'Disk Space'; } protected function swarnContent() { return dupxTplRender('parts/validation/tests/diskspace', array( 'freeSpace' => DUPX_U::readableByteSize($this->freeSpace), 'requiredSpace' => DUPX_U::readableByteSize($this->archiveSize + $this->extractedSize), 'isOk' => false ), false); } protected function goodContent() { return dupxTplRender('parts/validation/tests/diskspace', array( 'freeSpace' => DUPX_U::readableByteSize($this->freeSpace), 'requiredSpace' => DUPX_U::readableByteSize($this->archiveSize + $this->extractedSize), 'isOk' => true ), false); } }