/home/nbcgowuy/kdosheleads.com/wp-content/themes/marketo/inc/customizer/customizer-fields.php
<?php
/**
 *	Customizer General Settings
 *	styles for logo/title - sizing, spacing ...
 *
 */

if ( ! defined( 'ABSPATH' ) ) exit;

class Xs_Fields{

	/**
     * Holds the class object.
     *
     * @since 1.0.0
     *
     */
    
	public static $_instance;

	/**
     * Load Construct
     * 
     * @since 1.0.0
     */

	public function __construct(){
		$this->xs_customizer_init();
	}

	/**
     * Customizer field Initialization
     *
     * @since 1.0.0
     *
     */

	public function xs_customizer_init(){
		add_filter( 'kirki/fields', array($this,'marketo_general_setting') );
	}

	public function marketo_general_setting( $fields ){

		require MARKETO_CUSTOMIZER_DIR . 'general-settings.php' ;
		require MARKETO_CUSTOMIZER_DIR . 'nav-settings.php' ;
        require MARKETO_CUSTOMIZER_DIR . 'blog-single-settings.php' ;
        require MARKETO_CUSTOMIZER_DIR . 'blog-settings.php' ;
        require MARKETO_CUSTOMIZER_DIR . 'page-settings.php' ;
        require MARKETO_CUSTOMIZER_DIR . 'shop-setting.php' ;
        require MARKETO_CUSTOMIZER_DIR . 'footer-settings.php' ;
        require MARKETO_CUSTOMIZER_DIR . 'style-settings.php' ;
        require MARKETO_CUSTOMIZER_DIR . 'optimization-settings.php' ;
        require MARKETO_CUSTOMIZER_DIR . 'license-settings.php' ;

		return $fields;
	}

	public static function xs_get_instance() {
        if (!isset(self::$_instance)) {
            self::$_instance = new Xs_Fields();
        }
        return self::$_instance;
    }
}
$Xs_Fields = Xs_Fields::xs_get_instance();