File: //var/www/drakkar_site_dev/wp-content/themes/spiko/inc/customizer/custom-control.php
<?php
if (!function_exists('spiko_register_custom_controls')) :
/**
* Register Custom Controls
*/
function spiko_register_custom_controls($wp_customize) {
require_once get_template_directory() . '/inc/customizer/toggle/class-toggle-control.php';
require_once get_template_directory() . '/inc/customizer/sortable/class-sortable-control.php';
$wp_customize->register_control_type('Spiko_Toggle_Control');
$wp_customize->register_control_type('Spiko_Control_Sortable');
}
endif;
add_action('customize_register', 'spiko_register_custom_controls');