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

Team Showcase, version 1.7. 61 lines.

- Page: https://pluginprobe.com/plugins/team/1.7/code/includes/class-settings.php
- Raw: https://pluginprobe.com/plugins/team/1.7/raw/includes/class-settings.php
- Modified: 2015-09-19T06:56:48+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.7/code/includes/class-settings.php#L10-L20`.

```php
<?php

/*
* @Author 		ParaTheme
* @Folder	 	Team/Includes
* @version     3.0.5

* 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 );
       //add_action('admin_menu', array($this, 'create_menu'));
    }
	
	
	public function admin_menu() {
		add_submenu_page( 'edit.php?post_type=team', __( 'Settings', 'team' ), __( 'Settings', 'team' ), 'manage_options', 'team-settings', array( $this, 'settings_page' ) );
		
		//add_submenu_page( 'edit.php?post_type=team', __( 'License', 'team' ), __( 'License', 'team' ), 'manage_options', 'team-license', array( $this, 'license_page' ) );		


	}
	
	public function settings_page(){
		
		include( 'menu/settings.php' );	
		
		}
	
	public function license_page(){
		
		include( 'menu/license.php' );	
		
		}	

	
	
	
	
	
	

}


new team_class_settings();


```
