# elementor/4.0.3/modules/floating-buttons/admin-menu-items/editor-one-floating-elements-menu.php

Elementor Website Builder – more than just a page builder, version 4.0.3. 43 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.0.3/code/modules/floating-buttons/admin-menu-items/editor-one-floating-elements-menu.php
- Raw: https://pluginprobe.com/plugins/elementor/4.0.3/raw/modules/floating-buttons/admin-menu-items/editor-one-floating-elements-menu.php
- Modified: 2026-01-20T08:22:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/4.0.3/code/modules/floating-buttons/admin-menu-items/editor-one-floating-elements-menu.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\FloatingButtons\AdminMenuItems;

use Elementor\Core\Admin\EditorOneMenu\Interfaces\Menu_Item_Interface;
use Elementor\Modules\EditorOne\Classes\Menu_Config;
use Elementor\Modules\FloatingButtons\Module;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Editor_One_Floating_Elements_Menu implements Menu_Item_Interface {

	public function get_capability(): string {
		return 'manage_options';
	}

	public function get_parent_slug(): string {
		return Menu_Config::ELEMENTOR_MENU_SLUG;
	}

	public function is_visible(): bool {
		return true;
	}

	public function get_label(): string {
		return esc_html__( 'Floating Elements', 'elementor' );
	}

	public function get_position(): int {
		return 40;
	}

	public function get_slug(): string {
		return Module::ADMIN_PAGE_SLUG_CONTACT;
	}

	public function get_group_id(): string {
		return Menu_Config::TEMPLATES_GROUP_ID;
	}
}

```
