-
Notifications
You must be signed in to change notification settings - Fork 1
/
autoload.php
55 lines (55 loc) · 2.1 KB
/
autoload.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* PhpVcardMgr, the PHP class package managing Vcard/Xcard/Jcard information.
*
* This file is a part of PhpVcardMgr.
*
* @author Kjell-Inge Gustafsson, kigkonsult <[email protected]>
* @copyright 2022 Kjell-Inge Gustafsson, kigkonsult, All rights reserved
* @link https://kigkonsult.se
* @license Subject matter of licence is the software PhpVcardMgr.
* The above copyright, link, package and this licence notice shall
* be included in all copies or substantial portions of the PhpVcardMgr.
*
* PhpVcardMgr is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* PhpVcardMgr 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with PhpVcardMgr. If not, see <https://www.gnu.org/licenses/>.
*/
declare( strict_types = 1 );
/**
* autoload.php
*
* PhpVcardMgr package autoloader
*/
spl_autoload_register(
function( $class ) {
static $BS = '\\';
static $PHP = '.php';
static $PREFIX = 'Kigkonsult\\PhpVcardMgr\\';
static $SRC = 'src';
static $SRCDIR = null;
if( 0 !== strncmp( $PREFIX, $class, 23 )) {
return false;
}
$class = substr( $class, 23 );
if( false !== strpos( $class, $BS )) {
$class = str_replace( $BS, DIRECTORY_SEPARATOR, $class );
}
if( null === $SRCDIR ) {
$SRCDIR = __DIR__ . DIRECTORY_SEPARATOR . $SRC . DIRECTORY_SEPARATOR;
}
$file = $SRCDIR . $class . $PHP;
if( file_exists( $file )) {
include $file;
}
}
);