REDROOM
PHP 8.0.30
Path:
Logout
Edit File
Size: 3.39 KB
Close
/home/certprox/zang.certproxywizard.com/wp/wp-content/plugins/elementor/modules/global-classes/module.php
Text
Base64
<?php namespace Elementor\Modules\GlobalClasses; use Elementor\Core\Base\Module as BaseModule; use Elementor\Core\Experiments\Manager as Experiments_Manager; use Elementor\Modules\AtomicWidgets\Module as Atomic_Widgets_Module; use Elementor\Modules\GlobalClasses\Database\Global_Classes_Database_Updater; use Elementor\Modules\GlobalClasses\ImportExport\Import_Export; use Elementor\Modules\GlobalClasses\ImportExportCustomization\Import_Export_Customization; use Elementor\Modules\GlobalClasses\Utils\Template_Library_Global_Classes; use Elementor\Modules\GlobalClasses\Usage\Global_Classes_Usage; use Elementor\Plugin; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Module extends BaseModule { const NAME = 'e_classes'; const ENFORCE_CAPABILITIES_EXPERIMENT = 'global_classes_should_enforce_capabilities'; // TODO: Add global classes package const PACKAGES = [ 'editor-global-classes', ]; public function get_name() { return 'global-classes'; } public function __construct() { parent::__construct(); $this->register_features(); $is_feature_active = Plugin::$instance->experiments->is_feature_active( self::NAME ); $is_atomic_widgets_active = Plugin::$instance->experiments->is_feature_active( Atomic_Widgets_Module::EXPERIMENT_NAME ); // TODO: When the `e_atomic_elements` feature is not hidden, add it as a dependency if ( $is_feature_active && $is_atomic_widgets_active ) { add_filter( 'elementor/editor/v2/packages', fn( $packages ) => $this->add_packages( $packages ) ); ( new Global_Classes_Usage() )->register_hooks(); ( new Global_Classes_REST_API() )->register_hooks(); ( new Atomic_Global_Styles() )->register_hooks(); ( new Global_Classes_Cleanup() )->register_hooks(); ( new Import_Export() )->register_hooks(); ( new Import_Export_Customization() )->register_hooks(); ( new Global_Classes_Database_Updater() )->register(); add_filter( 'elementor/template_library/export/build_snapshots', [ Template_Library_Global_Classes::class, 'add_global_classes_snapshot' ], 10, 4 ); add_filter( 'elementor/template_library/get_data/extract_snapshots', [ Template_Library_Global_Classes::class, 'extract_global_classes_from_data' ], 10, 3 ); add_filter( 'elementor/template_library/import/process_content', [ Template_Library_Global_Classes::class, 'process_global_classes_import' ], 20, 3 ); } } private function register_features() { Plugin::$instance->experiments->add_feature([ 'name' => self::NAME, 'title' => esc_html__( 'Global Classes', 'elementor' ), 'description' => esc_html__( 'Enable global CSS classes.', 'elementor' ), 'hidden' => true, 'default' => Experiments_Manager::STATE_INACTIVE, 'release_status' => Experiments_Manager::RELEASE_STATUS_ALPHA, 'new_site' => [ 'default_active' => true, 'minimum_installation_version' => '4.0.0', ], ]); Plugin::$instance->experiments->add_feature([ 'name' => self::ENFORCE_CAPABILITIES_EXPERIMENT, 'title' => esc_html__( 'Enforce global classes capabilities', 'elementor' ), 'description' => esc_html__( 'Enforce global classes capabilities.', 'elementor' ), 'hidden' => true, 'default' => Experiments_Manager::STATE_ACTIVE, 'release_status' => Experiments_Manager::RELEASE_STATUS_DEV, ]); } private function add_packages( $packages ) { return array_merge( $packages, self::PACKAGES ); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 5 × Files: 8
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
database
DIR
-
drwxr-xr-x
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
import-export
DIR
-
drwxr-xr-x
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
import-export-customization
DIR
-
drwxr-xr-x
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
usage
DIR
-
drwxr-xr-x
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
utils
DIR
-
drwxr-xr-x
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
atomic-global-styles.php
2.42 KB
lrw-r--r--
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
global-classes-changes-resolver.php
1.67 KB
lrw-r--r--
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
global-classes-cleanup.php
2.74 KB
lrw-r--r--
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
global-classes-parser.php
3.35 KB
lrw-r--r--
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
global-classes-repository.php
2.49 KB
lrw-r--r--
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
global-classes-rest-api.php
9.12 KB
lrw-r--r--
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
global-classes.php
931 B
lrw-r--r--
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
module.php
3.39 KB
lrw-r--r--
2026-03-30 10:12:43
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).