| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
|
| 6 |
/** |
| 7 |
* Register the Easy Image Gallery options page in the admin menu. |
| 8 |
* |
| 9 |
* @since 1.4.1 |
| 10 |
*/ |
| 11 |
function easy_image_gallery_add_plugin_page() { |
| 12 |
add_menu_page( |
| 13 |
__( 'Easy Image Gallery Settings', 'easy-image-gallery' ), |
| 14 |
__( 'Easy Image Gallery', 'easy-image-gallery' ), |
| 15 |
'manage_options', |
| 16 |
EASY_IMAGE_GALLERY_DIR . 'includes/view/admin-page-view.php', |
| 17 |
'', |
| 18 |
'dashicons-images-alt2', |
| 19 |
); |
| 20 |
} |
| 21 |
add_action( 'admin_menu', 'easy_image_gallery_add_plugin_page' ); |
| 22 |
|