File: /home/cga.org.uk/public_html-20250117120149/wp-content/themes/simpleshift/inc/kirki/autoloader.php
<?php
if ( ! function_exists( 'kirki_autoload_classes' ) ) {
/**
* The Kirki class autoloader.
* Finds the path to a class that we're requiring and includes the file.
*/
function kirki_autoload_classes( $class_name ) {
$paths = array();
if ( 0 === stripos( $class_name, 'Kirki' ) ) {
$path = dirname( __FILE__ ) . '/includes/';
$filename = 'class-' . strtolower( str_replace( '_', '-', $class_name ) ) . '.php';
$paths[] = $path . $filename;
$paths[] = dirname( __FILE__ ) . '/includes/lib/' . $filename;
$substr = str_replace( 'Kirki_', '', $class_name );
$exploded = explode( '_', $substr );
$levels = count( $exploded );
$previous_path = '';
for ( $i = 0; $i < $levels; $i++ ) {
$paths[] = $path . $previous_path . strtolower( $exploded[ $i ] ) . '/' . $filename;
$previous_path .= strtolower( $exploded[ $i ] ) . '/';
}
foreach ( $paths as $path ) {
$path = wp_normalize_path( $path );
if ( file_exists( $path ) ) {
include_once $path;
return;
}
}
}
}
// Run the autoloader
spl_autoload_register( 'kirki_autoload_classes' );
}