PluginProbe
Easy Image Gallery / trunk
Easy Image Gallery vtrunk
1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.2 1.2.1 1.3 1.3.1 1.4 1.4.1 1.4.2 1.4.3 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 trunk 1.0.1 1.0.2 All 26 releases
easy-image-gallery / includes / admin-page.php

admin-page.php in Easy Image Gallery trunk, at includes/admin-page.php

22 lines 529 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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