# team/1.21/includes/class-settings.php

Team Showcase, version 1.21. 55 lines.

- Page: https://pluginprobe.com/plugins/team/1.21/code/includes/class-settings.php
- Raw: https://pluginprobe.com/plugins/team/1.21/raw/includes/class-settings.php
- Modified: 2017-03-09T13:30:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/team/1.21/code/includes/class-settings.php#L10-L20`.

```php
<?php

/*
* @Author 		ParaTheme
* Copyright: 	2015 ParaTheme
*/

if ( ! defined('ABSPATH')) exit;  // if direct access 	


class team_class_settings  {
	
	
    public function __construct()
    {
		
		
		//$this->settings_page = new Team_Settings();
		
		
		add_action( 'admin_menu', array( $this, 'admin_menu' ), 12 );

    }
	
	
	public function admin_menu() {
		add_submenu_page( 'edit.php?post_type=team', __( 'Settings', 'team' ), __( 'Settings', 'team' ), 'manage_options', 'settings', array( $this, 'settings' ) );
		add_submenu_page( 'edit.php?post_type=team', __( 'Help', 'team' ), __( 'Help', 'team' ), 'manage_options', 'help', array( $this, 'help' ) );

	}
	
	public function settings(){
		
		include( 'menu/settings.php' );	
		
		}
	

	public function help(){
	
		include( 'menu/help.php' );	
		
		}
	
	
	
	
	

}


new team_class_settings();


```
