|
Revision 7, 1.0 kB
(checked in by sven, 3 years ago)
|
snapshot of elgg 0.1.2a
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 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 |
|
|---|
| 13 |
require(path . "units/db/main.php"); |
|---|
| 14 |
|
|---|
| 15 |
require(path . "units/display/main.php"); |
|---|
| 16 |
|
|---|
| 17 |
require(path . "units/users/main.php"); |
|---|
| 18 |
|
|---|
| 19 |
require(path . "units/templates/main.php"); |
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
include(path . "units/icons/main.php"); |
|---|
| 23 |
|
|---|
| 24 |
include(path . "units/profile/main.php"); |
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
include(path . "units/weblogs/main.php"); |
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
include(path . "units/files/main.php"); |
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
include(path . "units/friends/main.php"); |
|---|
| 34 |
|
|---|
| 35 |
include(path . "units/groups/main.php"); |
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
require(path . "units/search/main.php"); |
|---|
| 39 |
|
|---|
| 40 |
?> |
|---|