| 1 |
<?php |
| 2 |
|
| 3 |
// Ultimate Dashboard Settings Page |
| 4 |
function udb_options_page() { |
| 5 |
add_options_page( 'Ultimate Dashboard', 'Ultimate Dashboard', 'manage_options', 'ultimate-dashboard', 'udb_options_page_callback' ); |
| 6 |
} |
| 7 |
add_action('admin_menu', 'udb_options_page'); |
| 8 |
|
| 9 |
// Ultimate Dashboard Widgets Page |
| 10 |
function udb_widgets_page() { |
| 11 |
add_submenu_page( 'index.php', 'Ultimate Dashboard Widgets', 'Dashboard Widgets', 'manage_options', 'edit.php?post_type=udb_widgets', '' ); |
| 12 |
} |
| 13 |
add_action('admin_menu', 'udb_widgets_page'); |
| 14 |
|
| 15 |
// Ultimate Dashboard Settings Template |
| 16 |
function udb_options_page_callback() { |
| 17 |
require_once ULTIMATE_DASHBOARD_PLUGIN_DIR . 'admin/ultimate-dashboard-template.php'; |
| 18 |
} |
| 19 |
|
| 20 |
// Ultimate Dashboard Custom Post Type |
| 21 |
require_once ULTIMATE_DASHBOARD_PLUGIN_DIR . 'admin/ultimate-dashboard-cpt.php'; |
| 22 |
|
| 23 |
// Ultimate Dashboard Settings |
| 24 |
require_once ULTIMATE_DASHBOARD_PLUGIN_DIR . 'admin/ultimate-dashboard-settings.php'; |
| 25 |
|
| 26 |
// Ultimate Dashboard Output |
| 27 |
require_once ULTIMATE_DASHBOARD_PLUGIN_DIR . 'admin/ultimate-dashboard-output.php'; |