Project

General

Profile

1
<?php
2

    
3
/*
4
 * Copyright (C) 2017 Manuela v.d.Decken <manuela@isteam.de>
5
 *
6
 * DO NOT ALTER OR REMOVE COPYRIGHT OR THIS HEADER
7
 *
8
 * This program is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU General Public License as published by
10
 * the Free Software Foundation, version 2 of the License.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License 2 for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License 2
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 */
20
/**
21
 * Description of Autoloader
22
 *
23
 * @package      Core
24
 * @copyright    Manuela v.d.Decken <manuela@isteam.de>
25
 * @author       Manuela v.d.Decken <manuela@isteam.de>
26
 * @license      GNU General Public License 3.0
27
 * @version      0.0.1
28
 * @revision     $Id: Autoloader.php 8 2017-08-28 09:46:44Z Manuela $
29
 * @since        File available since 05.07.2017
30
 * @deprecated   no / since 0000/00/00
31
 * @description  xxx
32
 */
33
//declare(strict_types = 1);
34
declare(encoding = 'UTF-8');
35

    
36
namespace bin;
37

    
38
// use
39

    
40
/**
41
 * short description of class
42
 */
43
class Autoloader
44
{
45

    
46
    protected static $sInstallPath = '';
47
    protected static $aTransNs = [
48
        'bin'   => 'framework',
49
        'addon' => 'modules',
50
        'acp'   => 'admin'
51
    ];
52

    
53
    public static function autoLoad($sClassName)
54
    {
55
        $aMatches = \preg_split('=[\\\\/]=', $sClassName, null, \PREG_SPLIT_NO_EMPTY);
56
        // insert default NS if no one is given
57
        if (\sizeof($aMatches) == 1) { \array_unshift($aMatches, 'framework'); }
58
        // translate namespaces into real dir entries
59
        $aMatches[0] = \str_replace(\array_keys(self::$aTransNs), self::$aTransNs, $aMatches[0]);
60
        // first seek in namespace
61
        $sFilePath = self::$sInstallPath.\implode('/', $aMatches).'.php';
62
        if (\is_readable($sFilePath)) {
63
            include $sFilePath;
64
        } else {
65
            // second seek in namespace with file prefix 'class.'
66
            $sTmp = \array_pop($aMatches);
67
            $sFilePath = self::$sInstallPath.\implode('/', $aMatches).'/class.'.$sTmp.'.php';
68
            \array_push($aMatches, $sTmp);
69
            if (\is_readable($sFilePath)) {
70
                include $sFilePath;
71
            }
72
        }
73
    }
74
/**
75
 * register this autoloader
76
 */
77
    public static function doRegister()
78
    {
79
        self::$sInstallPath = \rtrim(\str_replace('\\', '/', \dirname(__DIR__)), '/').'/';
80
        \spl_autoload_register([self, 'autoLoad']);
81
    }
82

    
83
/**
84
 * unregister this autoloader
85
 */
86
    public static function unRegister()
87
    {
88
        \spl_autoload_unregister([self, 'autoLoad']);
89
    }
90

    
91
}
(1-1/28)