&lt;?php
if ( ! defined( 'ABSPATH' ) ) exit;
class wpsm_team_b {
	private static $instance;
    public static function forge() {
        if (!isset(self::$instance)) {
            $className = __CLASS__;
            self::$instance = new $className;
        }
        return self::$instance;
    }
	
	private function __construct() {
		add_action('admin_enqueue_scripts', array(&$this, 'wpsm_team_b_admin_scripts'));
        if (is_admin()) {
			add_action('init', array(&$this, 'team_b_register_cpt'), 1);
			add_action('add_meta_boxes', array(&$this, 'wpsm_team_b_meta_boxes_group'));
			add_action('admin_init', array(&$this, 'wpsm_team_b_meta_boxes_group'), 1);
			add_action('save_post', array(&$this, 'add_team_b_save_meta_box_save'), 9, 1);
			add_action('save_post', array(&$this, 'team_b_settings_meta_box_save'), 9, 1);
		}
    }
	// admin scripts
	public function wpsm_team_b_admin_scripts(){
		if(get_post_type()=="team_builder"){
			
			wp_enqueue_script('theme-preview');
			wp_enqueue_media();
			wp_enqueue_script('jquery-ui-datepicker');
			//color-picker css n js
			wp_enqueue_style( 'wp-color-picker' );
			wp_enqueue_style('thickbox');
			wp_enqueue_script( 'wpsm_team_b-color-pic', wpshopmart_team_b_directory_url.'assets/js/color-picker.js', array( 'wp-color-picker' ), false, true );
			wp_enqueue_style('wpsm_team_b-panel-style', wpshopmart_team_b_directory_url.'assets/css/panel-style.css');
			 wp_enqueue_script('wpsm_team_b-media-uploads',wpshopmart_team_b_directory_url.'assets/js/media-upload-script.js',array('media-upload','thickbox','jquery')); 
			//font awesome css
			wp_enqueue_style('wpsm_team_b-font-awesome', wpshopmart_team_b_directory_url.'assets/css/font-awesome/css/font-awesome.min.css');
			wp_enqueue_style('wpsm_team_b_bootstrap', wpshopmart_team_b_directory_url.'assets/css/bootstrap.css');
			wp_enqueue_style('wpsm_team_b_jquery-css', wpshopmart_team_b_directory_url .'assets/css/ac_jquery-ui.css');
			
			//css line editor
			wp_enqueue_style('wpsm_team_b_line-edtor', wpshopmart_team_b_directory_url.'assets/css/jquery-linedtextarea.css');
			wp_enqueue_script( 'wpsm_team_b-line-edit-js', wpshopmart_team_b_directory_url.'assets/js/jquery-linedtextarea.js');
			
			wp_enqueue_script( 'wpsm_tabs_bootstrap-js', wpshopmart_team_b_directory_url.'assets/js/bootstrap.js');
			
			//tooltip
			wp_enqueue_style('wpsm_team_b_tooltip', wpshopmart_team_b_directory_url.'assets/tooltip/darktooltip.css');
			wp_enqueue_script( 'wpsm_team_b-tooltip-js', wpshopmart_team_b_directory_url.'assets/tooltip/jquery.darktooltip.js');
			
			// tab settings
			wp_enqueue_style('wpsm_team_b_settings-css', wpshopmart_team_b_directory_url.'assets/css/settings.css');
			wp_enqueue_style('wpsm_ac_help_css', wpshopmart_team_b_directory_url.'assets/css/help.css');
			
		}
	}
	public function team_b_register_cpt(){
		require_once('cpt-reg.php');
		add_filter( 'manage_edit-team_builder_columns', array(&$this, 'team_builder_columns' )) ;
		add_action( 'manage_team_builder_posts_custom_column', array(&$this, 'team_builder_manage_columns' ), 10, 2 );
	}
	function team_builder_columns( $columns ){
        $columns = array(
            'cb' => '&lt;input type="checkbox" />',
            'title' => __( 'Teams' ),
            'count' => __( 'Team Count' ),
            'shortcode' => __( 'Teams Shortcode' ),
            'date' => __( 'Date' )
        );
        return $columns;
    }

    function team_builder_manage_columns( $column, $post_id ){
        global $post;
		$TotalCount =  get_post_meta( $post_id, 'wpsm_team_b_count', true );
		if(!$TotalCount || $TotalCount==-1){
		$TotalCount =0;
		}
        switch( $column ) {
          case 'shortcode' :
            echo '&lt;input style="width:225px" type="text" value="[TEAM_B id='.esc_html($post_id).']" readonly="readonly" onclick="this.select()" />';
            break;
			case 'count' :
            echo esc_html($TotalCount);
            break;
          default :
            break;
        }
    }
	// metaboxes
	public function wpsm_team_b_meta_boxes_group(){
		add_meta_box('team_b_add', __('Add Team Panel', wpshopmart_team_b_text_domain), array(&$this, 'wpsm_add_team_b_meta_box_function'), 'team_builder', 'normal', 'low' );
		add_meta_box ('team_b_shortcode', __('Team Shortcode', wpshopmart_team_b_text_domain), array(&$this, 'wpsm_pic_team_b_shortcode'), 'team_builder', 'normal', 'low');
		add_meta_box ('team_b_help', __('Support & Docs', wpshopmart_team_b_text_domain), array(&$this, 'wpsm_pic_team_b_help'), 'team_builder', 'normal', 'low');
		
		add_meta_box ('team_b_more_pro', __('More Pro Plugin From Wpshopmart', wpshopmart_team_b_text_domain), array(&$this, 'wpsm_team_pic_more_pro'), 'team_builder', 'normal', 'low');
		add_meta_box('team_b_rateus', __('Rate Us If You Like This Plugin', wpshopmart_team_b_text_domain), array(&$this, 'wpsm_team_b_rateus_meta_box_function'), 'team_builder', 'side', 'low');
		
		add_meta_box('team_b_setting', __('Team Settings', wpshopmart_team_b_text_domain), array(&$this, 'wpsm_add_team_b_setting_function'), 'team_builder', 'side', 'low');
		
		add_meta_box('team_b_features', __('Team Pro Features', wpshopmart_team_b_text_domain), array(&$this, 'wpsm_add_team_b_features_function'), 'team_builder', 'side', 'low');
	}
	
	public function wpsm_add_team_b_meta_box_function($post){
		require_once('add-team.php');
	}
	public function add_team_b_save_meta_box_save($PostID){
		require('data-post/team-save-data.php');
	}
	public function team_b_settings_meta_box_save($PostID){
		require('data-post/team-settings-save-data.php');
	}
	public function wpsm_pic_team_b_shortcode(){
		require('team-shortcode-css.php');
	}
	

	public function wpsm_add_team_b_setting_function($post){
		require_once('settings.php');
	}
	
	public function wpsm_team_b_rateus_meta_box_function(){
		?>
		&lt;style>
		#team_b_rateus{
			background:#3338dd;
			text-align:center;
			}
			#team_b_rateus .hndle , #team_b_rateus .handlediv{
			display:none;
			}
			#team_b_rateus h1{
			color:#fff;
			margin-bottom:10px;
			}
			 #team_b_rateus h3 {
			color:#fff;
			font-size:15px;
			}
			.handle-order-higher, .handle-order-lower{
				display:none;
			}
			#team_b_rateus .button-hero{
			background: #efda4a;
    color: #312c2c;
    box-shadow: none;
    text-shadow: none;
    font-weight: 500;
    font-size: 16px;
	padding:20px 10px;
	width:100%;
	line-height:22px;
    border: 1px solid #efda4a;
	white-space: break-spaces;
			}
			.wpsm-rate-us{
			text-align:center;
			}
			.wpsm-rate-us span.dashicons {
				width: 40px;
				height: 40px;
				font-size:20px;
				color : #fff !important;
			}
			.wpsm-rate-us span.dashicons-star-filled:before {
				content: "\f155";
				font-size: 40px;
			}
		&lt;/style>
		   &lt;h1>&lt;?php esc_html_e('Shortcode',wpshopmart_team_b_text_domain); ?>&lt;/h1>
		   &lt;h3>&lt;?php esc_html_e('copy below shortcode paste into page or post',wpshopmart_team_b_text_domain); ?>&lt;/h3>
			
			
		   &lt;input style="width: 100%;
    padding: 5px;
    font-size: 16px;" readonly="readonly" type="text" value="&lt;?php echo "[TEAM_B id=".get_the_ID()."]"; ?>" onclick="this.select()">
		   
		   &lt;h1 style="padding-top:10px">&lt;?php esc_html_e('Need Help',wpshopmart_team_b_text_domain); ?>&lt;/h1>
		   
			&lt;a href="https://wordpress.org/support/plugin/team-builder/" target="_blank" class="button button-primary button-hero ">&lt;?php esc_html_e('Create Your Support Ticket',wpshopmart_team_b_text_domain); ?>&lt;/a>
			&lt;?php
	}

	
	public function wpsm_team_pic_more_pro(){
		require_once('more-pro.php');
	}
	public function wpsm_pic_team_b_help(){
		require_once('help.php');
	}
	public function wpsm_add_team_b_features_function(){
		?>&lt;style>
		.pro-button-div .btn-danger{    font-size: 19px;
    color: #fff;
    background-color: #01c698 !important;
    border-color: #01c698 !important;
    border-radius: 1px;
    margin-right: 10px;
    margin-top: 0px;
	width:100%;
	text-decoration:none;
	margin-bottom:10px;
	
		}
		.pro-button-div .btn-success{    font-size: 19px;
    color: #fff;
    background-color: #673ab7 !important;
    border-color: #673ab7 !important;
    border-radius: 1px;
    margin-right: 10px;
    margin-top: 0px;
	width:100%;
	text-decoration:none;
	
		}
		.pro-list li i{
		margin-right:10px;	
		}
		&lt;/style>
			&lt;ul class="pro-list">
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('50+ Grid Templates',wpshopmart_team_b_text_domain); ?> &lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('50+ Touch Slider Templates',wpshopmart_team_b_text_domain); ?>&lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('4+ Gridder Templates',wpshopmart_team_b_text_domain); ?>&lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('2+ Table Look Templates',wpshopmart_team_b_text_domain); ?> &lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Filter Option',wpshopmart_team_b_text_domain); ?>&lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('10+ Column Layout',wpshopmart_team_b_text_domain); ?>&lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('20+ Social Profiles Integrated',wpshopmart_team_b_text_domain); ?>&lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('5+ Team Detail Popups',wpshopmart_team_b_text_domain); ?>&lt;/li>								
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Add Team Website',wpshopmart_team_b_text_domain); ?>&lt;/li>								
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Add Team Email',wpshopmart_team_b_text_domain); ?>&lt;/li>	
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Add Team Phone Number',wpshopmart_team_b_text_domain); ?>&lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Add Team Person Address',wpshopmart_team_b_text_domain); ?> &lt;/li>		
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('5+ Dot navigation Style',wpshopmart_team_b_text_domain); ?>&lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('5+ Button Navigation Style',wpshopmart_team_b_text_domain); ?>&lt;/li>										
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Team Widget Pack',wpshopmart_team_b_text_domain); ?>&lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('500+ Google Fonts',wpshopmart_team_b_text_domain); ?> &lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Border Color Customization',wpshopmart_team_b_text_domain); ?> &lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Unlimited Color Scheme',wpshopmart_team_b_text_domain); ?> &lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('Custom Css',wpshopmart_team_b_text_domain); ?> &lt;/li>
				&lt;li> &lt;i class="fa fa-check">&lt;/i> &lt;?php esc_html_e('All Browser Compatible',wpshopmart_team_b_text_domain); ?> &lt;/li>	
			&lt;/ul>
			&lt;div class="pro-button-div">
				&lt;a class="btn btn-danger btn-lg " href="https://wpshopmart.com/plugins/team-pro/" target="_blank">&lt;?php esc_html_e('Check Pro Version',wpshopmart_team_b_text_domain); ?> &lt;/a>&lt;a class="btn btn-success btn-lg " href="https://wpshopmart.com/demos/team-pro/" target="_blank">&lt;?php esc_html_e('Team Pro Demo',wpshopmart_team_b_text_domain); ?>&lt;/a>
			&lt;/div>				
		&lt;?php
	}
	
}
global $wpsm_team_b;
$wpsm_team_b = wpsm_team_b::forge();
	

?><?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://mekteb.az/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://mekteb.az/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-posts-elementskit_content-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-posts-elementskit_template-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-posts-htteam_member-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-posts-team-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-posts-timeline_slider_post-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-taxonomies-wpostahs-slider-category-1.xml</loc></sitemap><sitemap><loc>https://mekteb.az/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
