| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Core\Admin\Menu\Interfaces; |
| 4 |
|
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; // Exit if accessed directly. |
| 7 |
} |
| 8 |
|
| 9 |
interface Admin_Menu_Item { |
| 10 |
public function get_capability(); |
| 11 |
|
| 12 |
public function get_label(); |
| 13 |
|
| 14 |
public function get_parent_slug(); |
| 15 |
|
| 16 |
public function is_visible(); |
| 17 |
} |
| 18 |
|