aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/start.functions.php15
-rw-r--r--engine/start.php21
-rw-r--r--index.php18
3 files changed, 54 insertions, 0 deletions
diff --git a/engine/start.functions.php b/engine/start.functions.php
new file mode 100644
index 000000000..193a16013
--- /dev/null
+++ b/engine/start.functions.php
@@ -0,0 +1,15 @@
+<?php
+
+ /**
+ * Elgg engine bootstrapper helper
+ * Functions used in start.php
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+?> \ No newline at end of file
diff --git a/engine/start.php b/engine/start.php
new file mode 100644
index 000000000..afd2dc504
--- /dev/null
+++ b/engine/start.php
@@ -0,0 +1,21 @@
+<?php
+
+ /**
+ * Elgg engine bootstrapper
+ * Loads the various elements of the Elgg engine
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ /**
+ * Load the helper function
+ */
+
+ require_once(dirname(__FILE__) . "/start.functions.php");
+
+?> \ No newline at end of file
diff --git a/index.php b/index.php
new file mode 100644
index 000000000..33a41acfa
--- /dev/null
+++ b/index.php
@@ -0,0 +1,18 @@
+<?php
+
+ /**
+ * Elgg index page for web-based applications
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ /**
+ * @todo Load the front page
+ */
+
+?> \ No newline at end of file