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

Team Showcase, version 1.11. 51 lines.

- Page: https://pluginprobe.com/plugins/team/1.11/code/includes/class-settings.php
- Raw: https://pluginprobe.com/plugins/team/1.11/raw/includes/class-settings.php
- Modified: 2015-11-10T09:17:34+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.11/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', 'team-settings', array( $this, 'settings_page' ) );


	}
	
	public function settings_page(){
		
		include( 'menu/settings.php' );	
		
		}
	

	
	
	
	
	
	

}


new team_class_settings();


```
