mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* @Author pickplugins
|
|
* Copyright: 2015 pickplugins.com
|
|
*/
|
|
|
|
if ( ! defined('ABSPATH')) exit; // if direct access
|
|
|
|
class class_post_grid_settings{
|
|
|
|
public function __construct(){
|
|
|
|
add_action('admin_menu', array( $this, 'post_grid_menu_init' ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function post_grid_menu_settings(){
|
|
include('menu/settings.php');
|
|
}
|
|
public function post_grid_menu_help(){
|
|
include('menu/help.php');
|
|
}
|
|
|
|
|
|
public function post_grid_layout_editor(){
|
|
include('menu/layout-editor.php');
|
|
}
|
|
|
|
|
|
|
|
public function post_grid_menu_init() {
|
|
|
|
add_submenu_page('edit.php?post_type=post_grid', __('Layout Editor',post_grid_textdomain), __('Layout Editor',post_grid_textdomain), 'manage_options', 'post_grid_layout_editor', array( $this, 'post_grid_layout_editor' ));
|
|
|
|
add_submenu_page('edit.php?post_type=post_grid', __('Settings',post_grid_textdomain), __('Settings',post_grid_textdomain), 'manage_options', 'post_grid_menu_settings', array( $this, 'post_grid_menu_settings' ));
|
|
|
|
add_submenu_page('edit.php?post_type=post_grid', __('Help',post_grid_textdomain), __('Help',post_grid_textdomain), 'manage_options', 'post_grid_menu_help', array( $this, 'post_grid_menu_help' ));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
new class_post_grid_settings(); |