[ 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
/
apps
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 admin-apps-page.php
6,413 B
SET
[ EDIT ]
|
[ DEL ]
📄 admin-menu-apps.php
686 B
SET
[ EDIT ]
|
[ DEL ]
📄 admin-pointer.php
1,968 B
SET
[ EDIT ]
|
[ DEL ]
📄 module.php
3,455 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: admin-menu-apps.php
<?php namespace Elementor\Modules\Apps; 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_Apps 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__( 'Add-ons', 'elementor' ); } public function get_page_title() { return esc_html__( 'Add-ons', 'elementor' ); } public function get_capability() { return 'manage_options'; } public function render() { Admin_Apps_Page::render(); } }