-
Notifications
You must be signed in to change notification settings - Fork 8
/
autoloader.php
26 lines (24 loc) · 894 Bytes
/
autoloader.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
<?php
/**
* This file is part of the CustomTags package.
*
* @author Oliver Lillie (aka buggedcom) <[email protected]>
* @license MIT
* @copyright Copyright (c) 2008-2013 Oliver Lillie <http://www.buggedcom.co.uk>
* @package CustomTags
* @version 1.0.0
*/
spl_autoload_register(function($class_name)
{
$parts = explode('\\', $class_name);
$namespace = array_shift($parts);
if($namespace === 'CustomTags')
{
$class = str_replace('_', DIRECTORY_SEPARATOR, array_pop($parts));
$path = dirname(__FILE__).DIRECTORY_SEPARATOR.'lib'.DIRECTORY_SEPARATOR.ltrim(implode(DIRECTORY_SEPARATOR, $parts).DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR).$class.'.php';
if(is_file($path) === true)
{
require_once $path;
}
}
});