| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Core\Admin\EditorOneMenu\Interfaces; |
| 4 |
|
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; |
| 7 |
} |
| 8 |
|
| 9 |
interface Menu_Item_Interface { |
| 10 |
|
| 11 |
public function get_capability(): string; |
| 12 |
|
| 13 |
public function get_label(): string; |
| 14 |
|
| 15 |
public function get_parent_slug(): string; |
| 16 |
|
| 17 |
public function is_visible(): bool; |
| 18 |
|
| 19 |
public function get_position(): int; |
| 20 |
|
| 21 |
public function get_slug(): string; |
| 22 |
|
| 23 |
public function get_group_id(): string; |
| 24 |
} |
| 25 |
|