| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Core\Admin\Menu; |
| 4 |
|
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; |
| 7 |
} |
| 8 |
|
| 9 |
class Main extends Base { |
| 10 |
|
| 11 |
protected function get_init_args() { |
| 12 |
return [ |
| 13 |
'page_title' => esc_html__( 'Elementor', 'elementor' ), |
| 14 |
'menu_title' => esc_html__( 'Elementor', 'elementor' ), |
| 15 |
'capability' => 'manage_options', |
| 16 |
'menu_slug' => 'elementor', |
| 17 |
'function' => null, |
| 18 |
'position' => 58.5, |
| 19 |
]; |
| 20 |
} |
| 21 |
} |
| 22 |
|