diff options
Diffstat (limited to 'mod/dashboard')
-rw-r--r-- | mod/dashboard/index.php | 11 | ||||
-rw-r--r-- | mod/dashboard/start.php | 22 | ||||
-rw-r--r-- | mod/dashboard/views/default/dashboard/welcome.php | 1 |
3 files changed, 34 insertions, 0 deletions
diff --git a/mod/dashboard/index.php b/mod/dashboard/index.php new file mode 100644 index 000000000..9f70ff6c0 --- /dev/null +++ b/mod/dashboard/index.php @@ -0,0 +1,11 @@ +<?php
+
+ require_once("../../engine/start.php");
+
+ global $CONFIG;
+
+ $body = elgg_view("dashboard/welcome");
+
+ echo page_draw("Dashboard", $body);
+
+?>
\ No newline at end of file diff --git a/mod/dashboard/start.php b/mod/dashboard/start.php new file mode 100644 index 000000000..8eb99a37c --- /dev/null +++ b/mod/dashboard/start.php @@ -0,0 +1,22 @@ +<?php
+
+ /**
+ * Simple dashboard plugin
+ *
+ * These parameters are required for the event API, but we won't use them:
+ *
+ * @param unknown_type $event
+ * @param unknown_type $object_type
+ * @param unknown_type $object
+ */
+
+ function dashboard_init($event, $object_type, $object = null) {
+
+ global $CONFIG;
+
+ }
+
+ // Make sure test_init is called on initialisation
+ register_event_handler('init','system','dashboard_init');
+
+?>
\ No newline at end of file diff --git a/mod/dashboard/views/default/dashboard/welcome.php b/mod/dashboard/views/default/dashboard/welcome.php new file mode 100644 index 000000000..527ea88ba --- /dev/null +++ b/mod/dashboard/views/default/dashboard/welcome.php @@ -0,0 +1 @@ +<p><i>This will be a dashboard.</i></p>
\ No newline at end of file |