aboutsummaryrefslogtreecommitdiff
path: root/mod/dashboard
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-01 13:48:23 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-01 13:48:23 +0000
commit1a9cf80a5a78f5162ed615c4604060de30ba3c95 (patch)
tree4e52fb7b006f8e6937595f5f47da88744cc1291d /mod/dashboard
parentf01d6a8266797c15155734002727496c0f0e8648 (diff)
downloadelgg-1a9cf80a5a78f5162ed615c4604060de30ba3c95.tar.gz
elgg-1a9cf80a5a78f5162ed615c4604060de30ba3c95.tar.bz2
No need to have the dashboard plugin. Dashboard is part of core.
git-svn-id: https://code.elgg.org/elgg/trunk@1234 36083f99-b078-4883-b0ff-0f9b5a30f544
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