REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 2.09 KB
Close
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/elementor/modules/site-navigation/module.php
Text
Base64
<?php namespace Elementor\Modules\SiteNavigation; use Elementor\Core\Base\Module as Module_Base; use Elementor\Core\Experiments\Exceptions\Dependency_Exception; use Elementor\Core\Experiments\Manager as Experiments_Manager; use Elementor\Modules\SiteNavigation\Data\Controller; use Elementor\Modules\SiteNavigation\Rest_Fields\Page_User_Can; use Elementor\Plugin; use Elementor\Utils; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Module extends Module_Base { const PAGES_PANEL_EXPERIMENT_NAME = 'pages_panel'; const PACKAGES = [ 'editor-site-navigation', ]; /** * Initialize the Site navigation module. * * @return void * @throws \Exception If the experiment registration fails. */ public function __construct() { Plugin::$instance->data_manager_v2->register_controller( new Controller() ); $this->register_pages_panel_experiment(); add_filter( 'elementor/editor/v2/packages', fn( $packages ) => $this->add_packages( $packages ) ); if ( Plugin::$instance->experiments->is_feature_active( self::PAGES_PANEL_EXPERIMENT_NAME ) ) { add_filter( 'elementor/editor/v2/scripts/env', function( $env ) { $env['@elementor/editor-site-navigation'] = [ 'is_pages_panel_active' => true, ]; return $env; } ); $this->register_rest_fields(); } } /** * Retrieve the module name. * * @return string */ public function get_name() { return 'site-navigation'; } /** * Register Experiment * * @since 3.16.0 * * @return void */ private function register_pages_panel_experiment() { Plugin::$instance->experiments->add_feature( [ 'name' => self::PAGES_PANEL_EXPERIMENT_NAME, 'title' => esc_html__( 'Pages Panel', 'elementor' ), 'release_status' => Experiments_Manager::RELEASE_STATUS_ALPHA, 'default' => Experiments_Manager::STATE_INACTIVE, 'hidden' => true, ] ); } private function register_rest_fields() { add_action( 'rest_api_init', function() { ( new Page_User_Can() )->register_rest_field(); } ); } 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: 2 × Files: 1
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
data
DIR
-
drwxr-xr-x
2026-06-10 02:40:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
rest-fields
DIR
-
drwxr-xr-x
2026-06-10 02:40:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
module.php
2.09 KB
lrw-r--r--
2025-06-10 13:36:30
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).