Server IP : 192.64.118.117 / Your IP : 3.144.13.165 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/www/wp-content/plugins/duplicator/installer/dup-installer/ctrls/ |
Upload File : |
<?php defined('ABSPATH') || defined('DUPXABSPATH') || exit; /** IDE HELPERS */ /* @var $GLOBALS['DUPX_AC'] DUPX_ArchiveConfig */ /** * Base controller class for installer controllers * * Standard: PSR-2 * @link http://www.php-fig.org/psr/psr-2 Full Documentation * */ //Enum used to define the various test statues final class DUPX_CTRL_Status { const FAILED = 0; const SUCCESS = 1; } /** * A class used to report on controller methods */ class DUPX_CTRL_Report { //Properties public $runTime; public $outputType = 'JSON'; public $status; } /** * Base class for all controllers */ class DUPX_CTRL_Out { public $report = null; public $payload = null; private $timeStart; private $timeEnd; /** * Init this instance of the object */ public function __construct() { $this->report = new DUPX_CTRL_Report(); $this->payload = null; $this->startProcessTime(); } public function startProcessTime() { $this->timeStart = $this->microtimeFloat(); } public function getProcessTime() { $this->timeEnd = $this->microtimeFloat(); $this->report->runTime = $this->timeEnd - $this->timeStart; return $this->report->runTime; } private function microtimeFloat() { list($usec, $sec) = explode(" ", microtime()); return ((float) $usec + (float) $sec); } } class DUPX_CTRL { const NAME_MAX_SERIALIZE_STRLEN_IN_M = 'mstrlim'; public static function renderPostProcessings($string) { return str_replace(array( DUPX_Package::getArchiveFileHash(), DUPX_Package::getPackageHash()) , '[HASH]', $string); } }