????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/duplicator/src/Libs/DupArchive/States/ |
Upload File : |
<?php /** * * @package Duplicator * @copyright (c) 2021, Snapcreek LLC */ namespace Duplicator\Libs\DupArchive\States; use Duplicator\Libs\DupArchive\Headers\DupArchiveFileHeader; use Duplicator\Libs\DupArchive\Headers\DupArchiveHeader; /** * Dup archive expand state */ abstract class DupArchiveExpandState extends DupArchiveStateBase { const VALIDATION_NONE = 0; const VALIDATION_STANDARD = 1; const VALIDATION_FULL = 2; /** @var DupArchiveHeader */ public $archiveHeader = null; /** @var DupArchiveFileHeader */ public $currentFileHeader = null; public $validateOnly = false; public $validationType = self::VALIDATION_STANDARD; public $fileWriteCount = 0; public $directoryWriteCount = 0; public $expectedFileCount = -1; public $expectedDirectoryCount = -1; public $filteredDirectories = array(); public $excludedDirWithoutChilds = array(); public $filteredFiles = array(); /** @var string[] relative path list to inclue files, overwrite filters */ public $includedFiles = array(); /** @var string[] relativePath => fullNewPath */ public $fileRenames = array(); public $directoryModeOverride = -1; public $fileModeOverride = -1; public $lastHeaderOffset = -1; /** @var bool */ public $keepFileTime = false; /** * Reset state for file * * @return void */ public function resetForFile() { $this->currentFileHeader = null; $this->currentFileOffset = 0; } /** * save expand state * * @return void */ abstract public function save(); }