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.17.162.216
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 /
API /
[ HOME SHELL ]
Name
Size
Permission
Action
DataTableManipulator
[ DIR ]
drwxr-xr-x
ApiRenderer.php
4.01
KB
-rw-r--r--
CORSHandler.php
1.45
KB
-rw-r--r--
DataTableGenericFilter.php
7.37
KB
-rw-r--r--
DataTableManipulator.php
6.91
KB
-rw-r--r--
DataTablePostProcessor.php
17.78
KB
-rw-r--r--
DocumentationGenerator.php
14.89
KB
-rw-r--r--
Inconsistencies.php
1.35
KB
-rw-r--r--
NoDefaultValue.php
282
B
-rw-r--r--
Proxy.php
22.6
KB
-rw-r--r--
Request.php
26.76
KB
-rw-r--r--
ResponseBuilder.php
8.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Inconsistencies.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\API; /** * Contains logic to replicate inconsistencies in Piwik's API. This class exists * to provide a way to clean up existing Piwik code and behavior without breaking * backwards compatibility immediately. * * Code that handles the case when the 'format_metrics' query parameter value is * 'bc' should be removed as well. This code is in API\Request and DataTablePostProcessor. * * Should be removed before releasing Piwik 3.0. */ class Inconsistencies { /** * In Piwik 2.X and below, the "raw" API would format percent values but no others. * This method returns the list of percent metrics that were returned from the API * formatted so we can maintain BC. * * Used by DataTablePostProcessor. */ public function getPercentMetricsToFormat() { return array( 'bounce_rate', 'conversion_rate', 'abandoned_rate', 'interaction_rate', 'exit_rate', 'bounce_rate_returning', 'nb_visits_percentage', '/.*_evolution/', '/step_.*_rate/', '/funnel_.*_rate/', '/form_.*_rate/', '/field_.*_rate/', ); } }
Close