blob: c0f51a1b7edc683861bbe52fcad2e4ff7c79ce3d (
plain)
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
|
<?
/**
* Load classes automatically when they're needed
*
* @param string $ClassName class name
*/
spl_autoload_register(function ($ClassName) {
$FilePath = SERVER_ROOT . '/classes/' . strtolower($ClassName) . '.class.php';
if (!file_exists($FilePath)) {
// TODO: Rename the following classes to conform with the code guidelines
switch ($ClassName) {
case 'MASS_USER_BOOKMARKS_EDITOR':
$FileName = 'mass_user_bookmarks_editor.class';
break;
case 'MASS_USER_TORRENTS_EDITOR':
$FileName = 'mass_user_torrents_editor.class';
break;
case 'MASS_USER_TORRENTS_TABLE_VIEW':
$FileName = 'mass_user_torrents_table_view.class';
break;
case 'TEXTAREA_PREVIEW':
$FileName = 'textarea_preview.class';
break;
case 'TORRENT':
case 'BENCODE_DICT':
case 'BENCODE_LIST':
$FileName = 'torrent.class';
break;
default:
die("Couldn't import class $ClassName");
}
$FilePath = SERVER_ROOT . "/classes/$FileName.php";
}
require_once($FilePath);
});
|