source: trunk/www/include.php@ 57

Last change on this file since 57 was 57, checked in by george, 16 years ago
  • Opraveno: Dále posunuta funkčnost podpory více světů na server.
File size: 1.2 KB
Line 
1<?php
2
3// Change current directory to script location
4$BaseDir = substr($_SERVER['SCRIPT_FILENAME'], 0, strrpos($_SERVER['SCRIPT_FILENAME'], '/'));
5if($BaseDir != '') chdir($BaseDir);
6
7include('config.php');
8
9include('types/include.php');
10
11include('common/database.php');
12include('common/module.php');
13include('common/global.php');
14include('common/error.php');
15include('common/code.php');
16include('common/page.php');
17include('common/log.php');
18include('common/form.php');
19include('common/table.php');
20
21include('model/user.php');
22include('model/server.php');
23include('model/realm.php');
24include('model/emulator.php');
25include('model/mangos_configuration_file.php');
26include('model/mangos_debug.php');
27include('model/task.php');
28include('model/backup.php');
29include('model/platform.php');
30include('model/history.php');
31include('model/shell.php');
32
33include('view/user.php');
34include('view/server.php');
35include('view/realm.php');
36include('view/emulator.php');
37include('view/task.php');
38include('view/backup.php');
39include('view/update.php');
40include('view/database.php');
41include('view/base.php');
42include('view/news.php');
43include('view/client.php');
44include('view/debug.php');
45
46include('init.php');
47
48?>
Note: See TracBrowser for help on using the repository browser.