aboutsummaryrefslogtreecommitdiff
path: root/mod/tagcloud/tagcloud.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-08 12:42:12 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-08 12:42:12 +0000
commit872a5469da80557721e32b22e93af531c2a279fa (patch)
tree105d1fba22acd7f370578f91055028af7c217065 /mod/tagcloud/tagcloud.php
parent2aaf2d80f1cbc2a6ad4a1b4b5ef97c3494d6a0bd (diff)
downloadelgg-872a5469da80557721e32b22e93af531c2a279fa.tar.gz
elgg-872a5469da80557721e32b22e93af531c2a279fa.tar.bz2
cleaned up tagcloud plugin
git-svn-id: http://code.elgg.org/elgg/trunk@8076 36083f99-b078-4883-b0ff-0f9b5a30f544
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