root/releases/0.1.1b/includes_system.php

Revision 5, 1.0 kB (checked in by sven, 3 years ago)

snapshot of elgg 0.1.1b

Line 
1 <?php
2
3     // ELGG system includes
4
5     /***************************************************************************
6     *    INSERT SYSTEM UNITS HERE
7     *    You should ideally not edit this file.
8     ****************************************************************************/
9
10     // Plug-in engine (must be loaded first)
11         require(path . "units/engine/main.php");
12     // Database
13         require(path . "units/db/main.php");
14     // Display
15         require(path . "units/display/main.php");
16     // Users
17         require(path . "units/users/main.php");
18     // Templates
19         require(path . "units/templates/main.php");
20         
21     // User icons
22         include(path . "units/icons/main.php");
23     // Profiles
24         include(path . "units/profile/main.php");
25         
26     // Weblog
27         include(path . "units/weblogs/main.php");
28
29     // File repository
30         include(path . "units/files/main.php");
31                 
32     // Friends
33         include(path . "units/friends/main.php");
34     // Friend groups
35         include(path . "units/groups/main.php");
36     
37     // Search
38         require(path . "units/search/main.php");
39                 
40 ?>
Note: See TracBrowser for help on using the browser.