| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) exit; // if direct access |
| 3 |
|
| 4 |
|
| 5 |
class team_class_settings |
| 6 |
{ |
| 7 |
|
| 8 |
|
| 9 |
public function __construct() |
| 10 |
{ |
| 11 |
|
| 12 |
add_action('admin_menu', array($this, 'admin_menu'), 12); |
| 13 |
} |
| 14 |
|
| 15 |
|
| 16 |
public function admin_menu() |
| 17 |
{ |
| 18 |
|
| 19 |
add_submenu_page('edit.php?post_type=team', __('Settings', 'team'), __('Settings', 'team'), 'manage_options', 'team-settings', array($this, 'settings')); |
| 20 |
} |
| 21 |
|
| 22 |
public function settings() |
| 23 |
{ |
| 24 |
|
| 25 |
//include( 'menu/settings-old.php' ); |
| 26 |
include('menu/settings.php'); |
| 27 |
} |
| 28 |
} |
| 29 |
|
| 30 |
|
| 31 |
new team_class_settings(); |
| 32 |
|