source: trunk/www/include.php@ 56

Last change on this file since 56 was 55, checked in by george, 16 years ago
  • Upraveno: Kód pro zobrazování a obsluhu akcí rozdělen do samostatných zobrazovacích tříd.
File size: 1015 bytes
Line 
1<?php
2
3include('config.php');
4
5include('types/include.php');
6
7include('common/database.php');
8include('common/module.php');
9include('common/global.php');
10include('common/error.php');
11include('common/code.php');
12include('common/page.php');
13include('common/log.php');
14include('common/form.php');
15include('common/table.php');
16
17include('model/user.php');
18include('model/server.php');
19include('model/realm.php');
20include('model/emulator.php');
21include('model/mangos_configuration_file.php');
22include('model/mangos_debug.php');
23include('model/task.php');
24include('model/backup.php');
25include('model/platform.php');
26include('model/history.php');
27
28include('view/user.php');
29include('view/server.php');
30include('view/realm.php');
31include('view/emulator.php');
32include('view/task.php');
33include('view/backup.php');
34include('view/update.php');
35include('view/database.php');
36include('view/base.php');
37include('view/news.php');
38include('view/client.php');
39include('view/debug.php');
40
41?>
Note: See TracBrowser for help on using the repository browser.