PHP 8.2.31
Preview: module.php Size: 1.42 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/elementor/modules/kit-elements-defaults/module.php

<?php
namespace Elementor\Modules\KitElementsDefaults;

use Elementor\Core\Experiments\Manager as Experiments_Manager;
use Elementor\Core\Base\Module as BaseModule;
use Elementor\Modules\KitElementsDefaults\Data\Controller;
use Elementor\Plugin;
use Elementor\Modules\KitElementsDefaults\ImportExport\Import_Export;
use Elementor\Modules\KitElementsDefaults\ImportExportCustomization\Import_Export_Customization;

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

class Module extends BaseModule {

	const META_KEY = '_elementor_elements_default_values';

	public function get_name() {
		return 'kit-elements-defaults';
	}

	private function enqueue_scripts() {
		wp_enqueue_script(
			'elementor-kit-elements-defaults-editor',
			$this->get_js_assets_url( 'kit-elements-defaults-editor' ),
			[
				'elementor-common',
				'elementor-editor-modules',
				'elementor-editor-document',
				'wp-i18n',
			],
			ELEMENTOR_VERSION,
			true
		);

		wp_set_script_translations( 'elementor-kit-elements-defaults-editor', 'elementor' );
	}

	public function __construct() {
		parent::__construct();

		add_action( 'elementor/editor/before_enqueue_scripts', function () {
			$this->enqueue_scripts();
		} );

		Plugin::$instance->data_manager_v2->register_controller( new Controller() );

		( new Usage() )->register();

		if ( is_admin() ) {
			( new Import_Export() )->register();
			( new Import_Export_Customization() )->register();
		}
	}
}

Directory Contents

Dirs: 4 × Files: 2

Name Size Perms Modified Actions
data DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
utils DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
1.42 KB lrw-r--r-- 2025-09-15 14:10:16
Edit Download
757 B lrw-r--r-- 2025-03-17 17:28:54
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).