File: /home/ukpics.org.uk/public_html-20250117120744/wp-content/themes/oigny-lite/inc/autoload.php
<?php
/**
* Autoload function
*
* @author Jegstudio
* @package oigny-lite
*/
spl_autoload_register(
function( $class ) {
$prefix = 'Oigny_Lite';
$base_dir = OIGNY_LITE_DIR . 'inc/class/';
$len = strlen( $prefix );
if ( strncmp( $prefix, $class, $len ) !== 0 ) {
return;
}
$array_path = explode( '\\', substr( $class, $len ) );
$relative_class = array_pop( $array_path );
$class_path = strtolower( implode( '/', $array_path ) );
$class_name = str_replace( '_', '-', 'class-' . $relative_class . '.php' );
$file = rtrim( $base_dir, '/' ) . '/' . $class_path . '/' . strtolower( $class_name );
if ( is_link( $file ) ) {
$file = readlink( $file );
}
if ( is_file( $file ) ) {
require $file;
}
}
);