📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 07:41:01
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
elementor
/
core
/
admin
/
editor-one-menu
/
menu
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/elementor/core/admin/editor-one-menu/menu
🔄 Refresh
✏️
Editing: abstract-menu-item.php
Writable
<?php namespace Elementor\Core\Admin\EditorOneMenu\Menu; use Elementor\Core\Admin\EditorOneMenu\Interfaces\Menu_Item_Third_Level_Interface; use Elementor\Modules\EditorOne\Classes\Menu_Config; if ( ! defined( 'ABSPATH' ) ) { exit; } abstract class Abstract_Menu_Item implements Menu_Item_Third_Level_Interface { public function get_capability(): string { return Menu_Config::CAPABILITY_MANAGE_OPTIONS; } public function get_parent_slug(): string { return Menu_Config::ELEMENTOR_MENU_SLUG; } public function is_visible(): bool { return true; } public function get_group_id(): string { return Menu_Config::EDITOR_GROUP_ID; } public function has_children(): bool { return false; } abstract public function get_label(): string; abstract public function get_position(): int; abstract public function get_slug(): string; abstract public function get_icon(): string; }
💾 Save Changes
❌ Cancel