Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
elementor
/
core
/
admin
/
editor-one-menu
/
interfaces
:
menu-item-interface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Elementor\Core\Admin\EditorOneMenu\Interfaces; if ( ! defined( 'ABSPATH' ) ) { exit; } interface Menu_Item_Interface { public function get_capability(): string; public function get_label(): string; public function get_parent_slug(): string; public function is_visible(): bool; public function get_position(): int; public function get_slug(): string; public function get_group_id(): string; }