🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 14:58:07 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
elementor
/
modules
/
global-classes
/
concerns
📍 /home/eliteewa/public_html/wp-content/plugins/elementor/modules/global-classes/concerns
🔄 Refresh
✏️
Editing: has-kit-dependency.php
Writable
<?php namespace Elementor\Modules\GlobalClasses\Concerns; use Elementor\Core\Kits\Documents\Kit; use Elementor\Plugin; if ( ! defined( 'ABSPATH' ) ) { exit; } trait Has_Kit_Dependency { private ?Kit $kit = null; public function set_kit( Kit $kit ): self { $this->kit = $kit; return $this; } protected function get_kit(): ?Kit { if ( ! $this->kit ) { $this->kit = Plugin::$instance->kits_manager->get_active_kit(); } return $this->kit; } }
💾 Save Changes
❌ Cancel