aboutsummaryrefslogtreecommitdiff
path: root/mod/tagcloud/tagcloud.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/tagcloud/tagcloud.php')
-rw-r--r--mod/tagcloud/tagcloud.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/mod/tagcloud/tagcloud.php b/mod/tagcloud/tagcloud.php
deleted file mode 100644
index df280bbae..000000000
--- a/mod/tagcloud/tagcloud.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/**
- * Display sidebar tagcloud
- **/
-
-// Load Elgg engine
-require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
-$title = elgg_view_title(elgg_echo('tagcloud:site:title'));
-
-$options = array(
- 'threshold' => 0,
- 'limit' => 100,
- 'tag_name' => 'tags',
-);
-$tags = elgg_view_tagcloud($options);
-
-$params = array(
- 'content' => $title . $tags,
- 'sidebar' => $sidebar
-);
-$body = elgg_view_layout("one_sidebar", $params);
-
-echo elgg_view_page(elgg_echo('tagcloud:site:title', array($page_owner->name)), $body); \ No newline at end of file