mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
36 lines
1011 B
PHP
36 lines
1011 B
PHP
<?
|
|
/**
|
|
* 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);
|
|
});
|