PHP Classes

File: autoload.php

Recommend this page to a friend!
  Classes of Kjell-Inge Gustafsson   PcGen   autoload.php   Download  
File: autoload.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PcGen
Generate PHP code from parameters
Author: By
Last change:
Date: 3 years ago
Size: 1,546 bytes
 

Contents

Class file image Download
<?php
/**
 * PcGen is the PHP Code Generation support package
 *
 * Copyright 2020 Kjell-Inge Gustafsson, kigkonsult, All rights reserved
 * Link <https://kigkonsult.se>
 * Support <https://github.com/iCalcreator/PcGen>
 *
 * This file is part of PcGen.
 *
 * PcGen is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * PcGen is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with PcGen. If not, see <https://www.gnu.org/licenses/>.
 */
/**
 * Kigkonsult\PcGen autoloader
 */
spl_autoload_register(
    function(
$class ) {
        static
$PREFIX = 'Kigkonsult\\PcGen\\';
        static
$BS = '\\';
        static
$SRC = 'src';
        static
$PHP = '.php';
        if (
0 != strncmp( $PREFIX, $class, 17 )) {
            return;
        }
       
$class = substr( $class, 17 );
        if (
false !== strpos( $class, $BS )) {
           
$class = str_replace( $BS, DIRECTORY_SEPARATOR, $class );
        }
       
$file = __DIR__ . DIRECTORY_SEPARATOR . $SRC . DIRECTORY_SEPARATOR . $class . $PHP;
        if (
is_file( $file )) {
            include
$file;
        }
    }
);