| Server IP : 172.67.71.254 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/blueoceanprod/public_html/wp-content/themes/techkit/inc/customizer/settings/ |
Upload File : |
<?php
/**
* @author RadiusTheme
* @since 1.0
* @version 1.0
*/
namespace radiustheme\techkit\Customizer\Settings;
use radiustheme\techkit\Customizer\TechkitTheme_Customizer;
use radiustheme\techkit\Customizer\Controls\Customizer_Switch_Control;
use radiustheme\techkit\Customizer\Controls\Customizer_Heading_Control;
use radiustheme\techkit\Customizer\Controls\Customizer_Separator_Control;
use radiustheme\techkit\Customizer\Controls\Customizer_Image_Radio_Control;
use WP_Customize_Media_Control;
use WP_Customize_Color_Control;
/**
* Adds the individual sections, settings, and controls to the theme customizer
*/
class TechkitTheme_Team_Post_Settings extends TechkitTheme_Customizer {
public function __construct() {
parent::instance();
$this->populated_default_data();
// Add Controls
add_action( 'customize_register', array( $this, 'register_team_post_controls' ) );
}
/**
* Gallery Post Controls
*/
public function register_team_post_controls( $wp_customize ) {
$wp_customize->add_setting( 'team_archive_style',
array(
'default' => $this->defaults['team_archive_style'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_radio_sanitization'
)
);
$wp_customize->add_control( new Customizer_Image_Radio_Control( $wp_customize, 'team_archive_style',
array(
'label' => __( 'Team Archive Layout', 'techkit' ),
'description' => esc_html__( 'Select the gallery layout for gallery page', 'techkit' ),
'section' => 'rttheme_team_settings',
'choices' => array(
'style1' => array(
'image' => trailingslashit( get_template_directory_uri() ) . 'assets/img/post-style-1.png',
'name' => __( 'Layout 1', 'techkit' )
),
'style2' => array(
'image' => trailingslashit( get_template_directory_uri() ) . 'assets/img/post-style-3.png',
'name' => __( 'Layout 2', 'techkit' )
),
)
)
) );
// Gallery option
$wp_customize->add_setting( 'team_arexcerpt_limit',
array(
'default' => $this->defaults['team_arexcerpt_limit'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_text_sanitization',
)
);
$wp_customize->add_control( 'team_arexcerpt_limit',
array(
'label' => __( 'Team Archive Excerpt Limit', 'techkit' ),
'section' => 'rttheme_team_settings',
'type' => 'number',
)
);
$wp_customize->add_setting( 'team_ar_excerpt',
array(
'default' => $this->defaults['team_ar_excerpt'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'team_ar_excerpt',
array(
'label' => __( 'Show Excerpt', 'techkit' ),
'section' => 'rttheme_team_settings',
)
));
$wp_customize->add_setting( 'team_ar_position',
array(
'default' => $this->defaults['team_ar_position'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'team_ar_position',
array(
'label' => __( 'Show Position', 'techkit' ),
'section' => 'rttheme_team_settings',
)
));
$wp_customize->add_setting( 'team_ar_social',
array(
'default' => $this->defaults['team_ar_social'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'team_ar_social',
array(
'label' => __( 'Show Social', 'techkit' ),
'section' => 'rttheme_team_settings',
)
));
// Single Gallery Post
$wp_customize->add_setting('team_single_heading', array(
'default' => '',
'sanitize_callback' => 'esc_html',
));
$wp_customize->add_control(new Customizer_Heading_Control($wp_customize, 'team_single_heading', array(
'label' => __( 'Single Team', 'techkit' ),
'section' => 'rttheme_team_settings',
)));
$wp_customize->add_setting( 'team_info',
array(
'default' => $this->defaults['team_info'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'team_info',
array(
'label' => __( 'Show Info', 'techkit' ),
'section' => 'rttheme_team_settings',
)
));
$wp_customize->add_setting( 'team_skill',
array(
'default' => $this->defaults['team_skill'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'team_skill',
array(
'label' => __( 'Show Skill', 'techkit' ),
'section' => 'rttheme_team_settings',
)
));
$wp_customize->add_setting( 'team_form',
array(
'default' => $this->defaults['team_form'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'team_form',
array(
'label' => __( 'Show Form', 'techkit' ),
'section' => 'rttheme_team_settings',
)
));
$wp_customize->add_setting( 'team_form_title',
array(
'default' => $this->defaults['team_form_title'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_text_sanitization',
)
);
$wp_customize->add_control( 'team_form_title',
array(
'label' => __( 'Form Title', 'techkit' ),
'section' => 'rttheme_team_settings',
'type' => 'text',
)
);
// Related Gallery Post
$wp_customize->add_setting('team_related_heading', array(
'default' => '',
'sanitize_callback' => 'esc_html',
));
$wp_customize->add_control(new Customizer_Heading_Control($wp_customize, 'team_related_heading', array(
'label' => __( 'Related Team Settings', 'techkit' ),
'section' => 'rttheme_team_settings',
)));
$wp_customize->add_setting( 'show_related_team',
array(
'default' => $this->defaults['show_related_team'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'show_related_team',
array(
'label' => __( 'Show Related Team', 'techkit' ),
'section' => 'rttheme_team_settings',
)
));
$wp_customize->add_setting( 'team_related_title',
array(
'default' => $this->defaults['team_related_title'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_text_sanitization',
)
);
$wp_customize->add_control( 'team_related_title',
array(
'label' => __( 'Related Title', 'techkit' ),
'section' => 'rttheme_team_settings',
'type' => 'text',
'active_callback' => 'rttheme_is_related_team_enabled',
)
);
$wp_customize->add_setting( 'related_team_social',
array(
'default' => $this->defaults['related_team_social'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'related_team_social',
array(
'label' => __( 'Team Social', 'techkit' ),
'section' => 'rttheme_team_settings',
'active_callback' => 'rttheme_is_related_team_enabled',
)
));
$wp_customize->add_setting( 'related_team_position',
array(
'default' => $this->defaults['related_team_position'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_switch_sanitization',
)
);
$wp_customize->add_control( new Customizer_Switch_Control( $wp_customize, 'related_team_position',
array(
'label' => __( 'Team Position', 'techkit' ),
'section' => 'rttheme_team_settings',
'active_callback' => 'rttheme_is_related_team_enabled',
)
));
$wp_customize->add_setting( 'related_team_number',
array(
'default' => $this->defaults['related_team_number'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_text_sanitization',
)
);
$wp_customize->add_control( 'related_team_number',
array(
'label' => __( 'Team Post', 'techkit' ),
'section' => 'rttheme_team_settings',
'type' => 'number',
'active_callback' => 'rttheme_is_related_team_enabled',
)
);
$wp_customize->add_setting( 'related_team_title_limit',
array(
'default' => $this->defaults['related_team_title_limit'],
'transport' => 'refresh',
'sanitize_callback' => 'rttheme_text_sanitization',
)
);
$wp_customize->add_control( 'related_team_title_limit',
array(
'label' => __( 'Title Limit', 'techkit' ),
'section' => 'rttheme_team_settings',
'type' => 'number',
'active_callback' => 'rttheme_is_related_team_enabled',
)
);
}
}
/**
* Initialise our Customizer settings only when they're required
*/
if ( class_exists( 'WP_Customize_Control' ) ) {
new TechkitTheme_Team_Post_Settings();
}