Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.117.170.80
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
analytics /
core /
Archive /
[ HOME SHELL ]
Name
Size
Permission
Action
ArchiveInvalidator
[ DIR ]
drwxr-xr-x
ArchiveInvalidator.php
29.17
KB
-rw-r--r--
ArchivePurger.php
11.16
KB
-rw-r--r--
ArchiveQuery.php
1.11
KB
-rw-r--r--
ArchiveQueryFactory.php
4.71
KB
-rw-r--r--
Chunk.php
4.37
KB
-rw-r--r--
DataCollection.php
14.37
KB
-rw-r--r--
DataTableFactory.php
20.6
KB
-rw-r--r--
Parameters.php
1.01
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Parameters.php
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later * */ namespace Piwik\Archive; use Piwik\Period; use Piwik\Segment; class Parameters { /** * The list of site IDs to query archive data for. * * @var array */ private $idSites = array(); /** * The list of Period's to query archive data for. * * @var Period[] */ private $periods = array(); /** * Segment applied to the visits set. * * @var Segment */ private $segment; public function getSegment() { return $this->segment; } public function __construct($idSites, $periods, Segment $segment) { $this->idSites = $idSites; $this->periods = $periods; $this->segment = $segment; } public function getPeriods() { return $this->periods; } public function getIdSites() { return $this->idSites; } }
Close