aboutsummaryrefslogtreecommitdiff
path: root/mod/dashboard
diff options
context:
space:
mode:
Diffstat (limited to 'mod/dashboard')
-rw-r--r--mod/dashboard/index.php11
-rw-r--r--mod/dashboard/manifest.xml8
-rw-r--r--mod/dashboard/start.php22
-rw-r--r--mod/dashboard/views/default/dashboard/welcome.php8
4 files changed, 0 insertions, 49 deletions
diff --git a/mod/dashboard/index.php b/mod/dashboard/index.php
deleted file mode 100644
index 9f70ff6c0..000000000
--- a/mod/dashboard/index.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?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/manifest.xml b/mod/dashboard/manifest.xml
deleted file mode 100644
index 49f06bdd0..000000000
--- a/mod/dashboard/manifest.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<plugin_manifest>
- <field key="author" value="Ben Werdmuller" />
- <field key="version" value="1.0" />
- <field key="description" value="Simple dashboard plugin." />
- <field key="website" value="http://www.elgg.org/" />
- <field key="copyright" value="(C) Curverider 2008" />
-</plugin_manifest>
diff --git a/mod/dashboard/start.php b/mod/dashboard/start.php
deleted file mode 100644
index 48d82175f..000000000
--- a/mod/dashboard/start.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?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_elgg_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
deleted file mode 100644
index 08c9692f5..000000000
--- a/mod/dashboard/views/default/dashboard/welcome.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-
- $user = $vars['name'];
-
-?>
-
-<p>Welcome <?php echo $user; ?></p>
-<p><i>This will be a dashboard.</i></p> \ No newline at end of file