[ 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
/
floating-buttons
/
admin-menu-items
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 editor-one-floating-elements-menu.php
908 B
SET
[ EDIT ]
|
[ DEL ]
📄 floating-buttons-empty-view-menu-item.php
529 B
SET
[ EDIT ]
|
[ DEL ]
📄 floating-buttons-menu-item.php
846 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: floating-buttons-menu-item.php
<?php namespace Elementor\Modules\FloatingButtons\AdminMenuItems; use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item; use Elementor\TemplateLibrary\Source_Local; use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item_Has_Position; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Floating_Buttons_Menu_Item implements Admin_Menu_Item, Admin_Menu_Item_Has_Position { public function is_visible() { return true; } public function get_parent_slug() { return Source_Local::ADMIN_MENU_SLUG; } public function get_label() { return esc_html__( 'Floating Elements', 'elementor' ); } public function get_page_title() { return esc_html__( 'Floating Elements', 'elementor' ); } public function get_capability() { return 'manage_options'; } public function get_position() { return 40; } }