1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Autoload function
- *
- * @author Jegstudio
- * @package zeever
- * @since 1.0.0
- */
- spl_autoload_register(
- function( $class ) {
- $prefix = 'Zeever';
- $base_dir = ZEEVER_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;
- }
- }
- );
|