-
Notifications
You must be signed in to change notification settings - Fork 86
/
autoloader.php
27 lines (25 loc) · 1.02 KB
/
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
27
<?php
/**
* This file is part of the PHP Video Toolkit v2 package.
*
* @author Oliver Lillie (aka buggedcom) <publicmail@buggedcom.co.uk>
* @license Dual licensed under MIT and GPLv2
* @copyright Copyright (c) 2008-2014 Oliver Lillie <http://www.buggedcom.co.uk>
* @package PHPVideoToolkit V2
* @version 2.1.7-beta
* @uses ffmpeg http://ffmpeg.sourceforge.net/
*/
spl_autoload_register(function($class_name)
{
$parts = explode('\\', $class_name);
$namespace = array_shift($parts);
if($namespace === 'PHPVideoToolkit')
{
$class = str_replace('_', DIRECTORY_SEPARATOR, array_pop($parts));
$path = dirname(__FILE__).DIRECTORY_SEPARATOR.'src'.DIRECTORY_SEPARATOR.'PHPVideoToolkit'.DIRECTORY_SEPARATOR.ltrim(implode(DIRECTORY_SEPARATOR, $parts).DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR).$class.'.php';
if(is_file($path) === true)
{
require_once $path;
}
}
});