get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'cab_booking_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'cab_booking_customize_partial_blogdescription', ) ); } /* * Theme Options Panel */ $wp_customize->add_panel('cab_booking_panel', array( 'priority' => 25, 'capability' => 'edit_theme_options', 'title' => __('Cab Booking Theme Options', 'cab-booking'), )); /* * Customizer top header section */ $wp_customize->add_setting( 'cab_booking_site_title_text', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => 1, 'sanitize_callback' => 'cab_booking_sanitize_checkbox', ) ); $wp_customize->add_control( 'cab_booking_site_title_text', array( 'label' => __('Enable Title', 'cab-booking'), 'description' => __('Enable or Disable Title from the site', 'cab-booking'), 'section' => 'title_tagline', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'cab_booking_site_tagline_text', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => 0, 'sanitize_callback' => 'cab_booking_sanitize_checkbox', ) ); $wp_customize->add_control( 'cab_booking_site_tagline_text', array( 'label' => __('Enable Tagline', 'cab-booking'), 'description' => __('Enable or Disable Tagline from the site', 'cab-booking'), 'section' => 'title_tagline', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'cab_booking_logo_width', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '150', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_logo_width', array( 'label' => __('Logo Width in PX', 'cab-booking'), 'section' => 'title_tagline', 'type' => 'number', 'input_attrs' => array( 'min' => 100, 'max' => 300, 'step' => 1, ), ) ); /*Additional Options*/ $wp_customize->add_section('cab_booking_additional_section', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __('Additional Options', 'cab-booking'), 'panel' => 'cab_booking_panel', )); /*Main Slider Enable Option*/ $wp_customize->add_setting( 'cab_booking_enable_preloader', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => 0, 'sanitize_callback' => 'cab_booking_sanitize_checkbox', ) ); $wp_customize->add_control( 'cab_booking_enable_preloader', array( 'label' => __('Enable Preloader', 'cab-booking'), 'description' => __('Checked to show preloader', 'cab-booking'), 'section' => 'cab_booking_additional_section', 'type' => 'checkbox', ) ); /* Header Options*/ $wp_customize->add_section('cab_booking_header_section', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __('Header Options', 'cab-booking'), 'panel' => 'cab_booking_panel', )); /*Phone Number*/ $wp_customize->add_setting( 'cab_booking_phone_number', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_phone_number', array( 'label' => __('Edit Phone Number', 'cab-booking'), 'section' => 'cab_booking_header_section', 'type' => 'text', ) ); /* * Customizer main slider section */ /*Main Slider Options*/ $wp_customize->add_section('cab_booking_slider_section', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __('Main Slider Options', 'cab-booking'), 'panel' => 'cab_booking_panel', )); /*Main Slider Enable Option*/ $wp_customize->add_setting( 'cab_booking_enable_slider', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => 0, 'sanitize_callback' => 'cab_booking_sanitize_checkbox', ) ); $wp_customize->add_control( 'cab_booking_enable_slider', array( 'label' => __('Enable Main Slider', 'cab-booking'), 'description' => __('Checked to show the main slider', 'cab-booking'), 'section' => 'cab_booking_slider_section', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'cab_booking_slide_number', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_slide_number', array( 'label' => __('Number of slide to show', 'cab-booking'), 'section' => 'cab_booking_slider_section', 'type' => 'number', 'input_attrs' => array( 'min' => 1, 'max' => 3, ) ) ); $cab_booking_slide_count = (int)get_theme_mod('cab_booking_slide_number'); for ($m=1; $m <= $cab_booking_slide_count; $m++) { /*Main Slider Image*/ $wp_customize->add_setting( 'cab_booking_slider_image'.$m, array( 'capability' => 'edit_theme_options', 'default' => '', 'transport' => 'postMessage', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'cab_booking_slider_image'.$m, array( 'label' => __('Edit Slider Image ', 'cab-booking') .$m, 'description' => __('Edit the slider image.', 'cab-booking'), 'section' => 'cab_booking_slider_section', ) ) ); /*Main Slider Heading*/ $wp_customize->add_setting( 'cab_booking_slider_heading'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_slider_heading'.$m, array( 'label' => __('Edit Heading Text ', 'cab-booking') .$m, 'description' => __('Edit the slider heading text.', 'cab-booking'), 'section' => 'cab_booking_slider_section', 'type' => 'text', ) ); /*Main Slider Content*/ $wp_customize->add_setting( 'cab_booking_slider_text'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_slider_text'.$m, array( 'label' => __('Edit Content Text ', 'cab-booking') .$m, 'description' => __('Edit the slider content text.', 'cab-booking'), 'section' => 'cab_booking_slider_section', 'type' => 'text', ) ); /*Main Slider Button1 Text*/ $wp_customize->add_setting( 'cab_booking_slider_button1_text'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_slider_button1_text'.$m, array( 'label' => __('Edit Button #1 Text ', 'cab-booking') .$m, 'description' => __('Edit the slider button text.', 'cab-booking'), 'section' => 'cab_booking_slider_section', 'type' => 'text', ) ); /*Main Slider Button1 URL*/ $wp_customize->add_setting( 'cab_booking_slider_button1_link'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'cab_booking_slider_button1_link'.$m, array( 'label' => __('Edit Button #1 URL ', 'cab-booking') .$m, 'description' => __('Edit the slider button url.', 'cab-booking'), 'section' => 'cab_booking_slider_section', 'type' => 'url', ) ); } /* * Customizer Services section */ /*Services Options*/ $wp_customize->add_section('cab_booking_services_section', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __('Services Options', 'cab-booking'), 'panel' => 'cab_booking_panel', )); /*Main Services Enable Option*/ $wp_customize->add_setting( 'cab_booking_enable_service', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => 0, 'sanitize_callback' => 'cab_booking_sanitize_checkbox', ) ); $wp_customize->add_control( 'cab_booking_enable_service', array( 'label' => __('Enable Services', 'cab-booking'), 'description' => __('Checked to show the services', 'cab-booking'), 'section' => 'cab_booking_services_section', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'cab_booking_services_number', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_services_number', array( 'label' => __('Number of Services to show', 'cab-booking'), 'section' => 'cab_booking_services_section', 'type' => 'number', 'input_attrs' => array( 'min' => 1, 'max' => 3, ) ) ); $cab_booking_service_count = (int)get_theme_mod('cab_booking_services_number'); for ($m=1; $m <= $cab_booking_service_count; $m++) { /*Main Services Content*/ $wp_customize->add_setting( 'cab_booking_services_icon'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_services_icon'.$m, array( 'label' => __('Edit Services Icon ', 'cab-booking') .$m, 'description' => __('Edit the service content text.', 'cab-booking'), 'section' => 'cab_booking_services_section', 'type' => 'text', ) ); /*Main Services Heading*/ $wp_customize->add_setting( 'cab_booking_services_heading'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_services_heading'.$m, array( 'label' => __('Edit Heading Text ', 'cab-booking') .$m, 'description' => __('Edit the service heading text.', 'cab-booking'), 'section' => 'cab_booking_services_section', 'type' => 'text', ) ); /*Main Services Content*/ $wp_customize->add_setting( 'cab_booking_services_text'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_services_text'.$m, array( 'label' => __('Edit Content Text ', 'cab-booking') .$m, 'description' => __('Edit the service content text.', 'cab-booking'), 'section' => 'cab_booking_services_section', 'type' => 'text', ) ); } /* * Customizer Popular Car section */ /*Popular Car Options*/ $wp_customize->add_section('cab_booking_product_section', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __('Popular Car Options', 'cab-booking'), 'panel' => 'cab_booking_panel', )); /*Popular Car Enable Option*/ $wp_customize->add_setting( 'cab_booking_enable_project', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => 0, 'sanitize_callback' => 'cab_booking_sanitize_checkbox', ) ); $wp_customize->add_control( 'cab_booking_enable_project', array( 'label' => __('Enable Popular Car Section', 'cab-booking'), 'description' => __('Checked to show the category', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'checkbox', ) ); /*Main Services Heading*/ $wp_customize->add_setting( 'cab_booking_popular_car_heading', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_car_heading', array( 'label' => __('Edit Heading Text ', 'cab-booking') , 'description' => __('Edit the popular car heading text.', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); $wp_customize->add_setting( 'cab_booking_popular_number', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_number', array( 'label' => __('Number of Popular Car to show', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'number', 'input_attrs' => array( 'min' => 1, 'max' => 6, ) ) ); $cab_booking_popular_count = (int)get_theme_mod('cab_booking_popular_number'); for ($m=1; $m <= $cab_booking_popular_count; $m++) { /*Main Popular Image*/ $wp_customize->add_setting( 'cab_booking_popular_car_image'.$m, array( 'capability' => 'edit_theme_options', 'default' => '', 'transport' => 'postMessage', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'cab_booking_popular_car_image'.$m, array( 'label' => __('Edit Popular Image ', 'cab-booking') .$m, 'description' => __('Edit the popular image.', 'cab-booking'), 'section' => 'cab_booking_product_section', ) ) ); /*Main Popular Car Price*/ $wp_customize->add_setting( 'cab_booking_popular_car_price'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_car_price'.$m, array( 'label' => __('Edit Popular Car Price ', 'cab-booking') .$m, 'description' => __('Edit the popular car price text.', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); /*Main Popular Car Duration*/ $wp_customize->add_setting( 'cab_booking_popular_car_duration'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_car_duration'.$m, array( 'label' => __('Edit Car Duration ', 'cab-booking') .$m, 'description' => __('Edit the popular car duration.', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); /*Main Popular Car Heading*/ $wp_customize->add_setting( 'cab_booking_popular_car_heading'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_car_heading'.$m, array( 'label' => __('Edit Popular Car Heading ', 'cab-booking') .$m, 'description' => __('Edit the popular car heading text.', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); /*Main Popular Car Seats*/ $wp_customize->add_setting( 'cab_booking_popular_car_seats'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_car_seats'.$m, array( 'label' => __('Edit No Of Seats ', 'cab-booking') .$m, 'description' => __('Edit the popular car no of seats.', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); /*Main Popular Car Types*/ $wp_customize->add_setting( 'cab_booking_popular_car_types'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_car_types'.$m, array( 'label' => __('Edit Transmission ', 'cab-booking') .$m, 'description' => __('Edit the popular car transmission .', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); /*Main Popular Car Heading*/ $wp_customize->add_setting( 'cab_booking_popular_car_year'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_car_year'.$m, array( 'label' => __('Edit Popular Car Model Year ', 'cab-booking') .$m, 'description' => __('Edit the popular car model year.', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); /*Main Popular Car Heading*/ $wp_customize->add_setting( 'cab_booking_services_mode'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_services_mode'.$m, array( 'label' => __('Edit Air Condition ', 'cab-booking') .$m, 'description' => __('Edit the popular car air condition .', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); /*Main Popular Car Heading*/ $wp_customize->add_setting( 'cab_booking_popular_car_button_text'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_popular_car_button_text'.$m, array( 'label' => __('Edit Button Text ', 'cab-booking') .$m, 'description' => __('Edit the popular car button text.', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'text', ) ); /*Main Slider Button1 URL*/ $wp_customize->add_setting( 'cab_booking_popular_car_button_link'.$m, array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'cab_booking_popular_car_button_link'.$m, array( 'label' => __('Edit Button URL ', 'cab-booking') .$m, 'description' => __('Edit the Popular car button url.', 'cab-booking'), 'section' => 'cab_booking_product_section', 'type' => 'url', ) ); } /* * Customizer Footer Section */ /*Footer Options*/ $wp_customize->add_section('cab_booking_footer_section', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __('Footer Options', 'cab-booking'), 'panel' => 'cab_booking_panel', )); /*Footer Social Menu Option*/ $wp_customize->add_setting( 'cab_booking_footer_social_menu', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => 1, 'sanitize_callback' => 'cab_booking_sanitize_checkbox', ) ); $wp_customize->add_control( 'cab_booking_footer_social_menu', array( 'label' => __('Enable Footer Social Menu', 'cab-booking'), 'description' => __('Checked to show the footer social menu. Go to Dashboard >> Appearance >> Menus >> Create New Menu >> Add Custom Link >> Add Social Menu >> Checked Social Menu >> Save Menu.', 'cab-booking'), 'section' => 'cab_booking_footer_section', 'type' => 'checkbox', ) ); /*Go To Top Option*/ $wp_customize->add_setting( 'cab_booking_enable_go_to_top_option', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => 1, 'sanitize_callback' => 'cab_booking_sanitize_checkbox', ) ); $wp_customize->add_control( 'cab_booking_enable_go_to_top_option', array( 'label' => __('Enable Go To Top', 'cab-booking'), 'description' => __('Checked to enable Go To Top option.', 'cab-booking'), 'section' => 'cab_booking_footer_section', 'type' => 'checkbox', ) ); /*Footer Copyright Text Enable*/ $wp_customize->add_setting( 'cab_booking_copyright_option', array( 'capability' => 'edit_theme_options', 'transport' => 'refresh', 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'cab_booking_copyright_option', array( 'label' => __('Edit Copyright Text', 'cab-booking'), 'description' => __('Edit the Footer Copyright Section.', 'cab-booking'), 'section' => 'cab_booking_footer_section', 'type' => 'text', ) ); } add_action( 'customize_register', 'cab_booking_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function cab_booking_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function cab_booking_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function cab_booking_customize_preview_js() { wp_enqueue_script( 'cab-booking-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), CAB_BOOKING_VERSION, true ); } add_action( 'customize_preview_init', 'cab_booking_customize_preview_js' ); /** * Singleton class for handling the theme's customizer integration. * * @since 1.0.0 * @access public */ final class Cab_Booking_Customize { /** * Returns the instance. * * @since 1.0.0 * @access public * @return object */ public static function get_instance() { static $instance = null; if ( is_null( $instance ) ) { $instance = new self; $instance->setup_actions(); } return $instance; } /** * Constructor method. * * @since 1.0.0 * @access private * @return void */ private function __construct() {} /** * Sets up initial actions. * * @since 1.0.0 * @access private * @return void */ private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } /** * Sets up the customizer sections. * * @since 1.0.0 * @access public * @param object $manager * @return void */ public function sections( $manager ) { // Load custom sections. load_template( trailingslashit( get_template_directory() ) . '/revolution/inc/section-pro.php' ); // Register custom section types. $manager->register_section_type( 'Cab_Booking_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Cab_Booking_Customize_Section_Pro( $manager,'cab_booking_go_pro', array( 'priority' => 1, 'title' => esc_html__( 'Cab Booking Pro', 'cab-booking' ), 'pro_text' => esc_html__( 'Buy Pro', 'cab-booking' ), 'pro_url' => esc_url('https://www.revolutionwp.com/wp-themes/cab-booking-wordpress-theme/'), ) ) ); } /** * Loads theme customizer CSS. * * @since 1.0.0 * @access public * @return void */ public function enqueue_control_scripts() { wp_enqueue_script( 'cab-booking-customize-controls', trailingslashit( get_template_directory_uri() ) . '/revolution/assets/js/customize-controls.js', array( 'customize-controls' ) ); wp_enqueue_style( 'cab-booking-customize-controls', trailingslashit( get_template_directory_uri() ) . '/revolution/assets/css/customize-controls.css' ); } } // Doing this customizer thang! Cab_Booking_Customize::get_instance();