add autoload class
[Snippets.git] / autoload.class.php
1 <?php
2 /* autoload.class.php - DNS-CP
3 * Copyright (C) 2013 Jan Altensen (Stricted)
4 * http://stricted.de/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19 class autoload {
20 /*
21 * constructor to set autoloader
22 */
23 public function __construct () {
24 spl_autoload_register(array('self', 'autoload'));
25 }
26
27 /*
28 * autoload class files from namespace uses
29 *
30 * @param string $className
31 */
32 public static function autoload ($className) {
33 $namespaces = explode('\\', $className);
34 if (count($namespaces) > 1) {
35 array_shift($namespaces);
36 $classPath = dirname(__FILE__) . '/' . implode('/', $namespaces) . '.class.php';
37 if (file_exists($classPath)) {
38 require_once($classPath);
39 }
40 }
41 }
42 }
43 new autoload();
44 ?>