new file and folder icons
[elgg.git] / includes.php
blobf533b84f2b69d849fe68b19a8d971bbd8cefdd60
1 <?php
3 // error_reporting(E_ERROR | E_WARNING | E_PARSE);
5 // ELGG system includes
7 // System constants: set values as necessary
8 // Supply your values within the second set of speech marks in the pair
9 // i.e., define("system constant name", "your value");
11 // Name of the site (eg Elgg, Apcala, University of Bogton's Learning Landscape, etc)
12 define("sitename", "");
13 // External URL to the site (eg http://elgg.bogton.edu/)
14 // NB: **MUST** have a final slash at the end
15 define("url", "");
16 // Physical path to the files (eg /home/elggserver/httpdocs/)
17 // NB: **MUST** have a final slash at the end
18 define("path", "");
19 // Email address of the system (eg elgg-admin@bogton.edu)
20 define("email", "");
21 // Country code to set language to if you have gettext installed
22 // To include new languages, save their compiled .mo gettext
23 // file into languages/country code/LC_MESSAGES/
24 // (the file within this folder must be called elgg.mo)
25 // An Elgg gettext template is included as /elgg.pot
26 define("locale", "en_GB");
27 // The following should be set to false if you don't want the
28 // general public to be able to register accounts with your
29 // Elgg site.
30 define("public_reg", true);
31 // Whether to display verbose error information. This is intended mainly
32 // for Elgg developers, and should normally be set to false.
33 define("ELGG_DEBUG", true);
35 // Database config:
37 // Database server (eg localhost)
38 define("db_server", "");
39 // Database username
40 define("db_user", "");
41 // Database password
42 define("db_pass", "");
43 // Database name
44 define("db_name", "");
46 // Load required system files: do not edit this line.
47 require("includes_system.php");
49 /***************************************************************************
50 * INSERT PLUGINS HERE
51 * Eventually this should be replaced with plugin autodiscovery
52 ****************************************************************************/
54 // XMLRPC
55 // @include(path . "units/rpc/main.php");
57 // Atom
58 // @include(path . "units/atom/main.php");
60 // Visual editor (tinyMCE)
61 // @include(path . "units/tinymce/main.php");
63 /***************************************************************************
64 * CONTENT MODULES
65 * This should make languages easier, although some kind of
66 * selection process will be required
67 ****************************************************************************/
69 // General
70 @include(path . "content/general/main.php");
71 // Main index
72 @include(path . "content/mainindex/main.php");
73 // User-related
74 @include(path . "content/users/main.php");
76 /***************************************************************************
77 * HELP MODULES
78 ****************************************************************************/
80 // Include main
81 @include(path . "help/mainindex/main.php");
83 /***************************************************************************
84 * START-OF-PAGE RUNNING
85 ****************************************************************************/
87 run("init");