aboutsummaryrefslogtreecommitdiff
path: root/mod/categories/views/default/output/categories.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-11 22:51:08 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-11 22:51:08 +0000
commit891739afadddad56b517b7d565458296eeb58c0b (patch)
tree1891b4f21abd3df6aa1ec4b8847758644e1622fb /mod/categories/views/default/output/categories.php
parent1f1a9d691360eac9bb3eeaf98ebaaec6b6305b2b (diff)
downloadelgg-891739afadddad56b517b7d565458296eeb58c0b.tar.gz
elgg-891739afadddad56b517b7d565458296eeb58c0b.tar.bz2
some clean up of the categories plugin - html/css polish needed
git-svn-id: http://code.elgg.org/elgg/trunk@8122 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/categories/views/default/output/categories.php')
-rw-r--r--mod/categories/views/default/output/categories.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/mod/categories/views/default/output/categories.php b/mod/categories/views/default/output/categories.php
new file mode 100644
index 000000000..724c46037
--- /dev/null
+++ b/mod/categories/views/default/output/categories.php
@@ -0,0 +1,27 @@
+<?php
+/**
+ * View categories on an entity
+ *
+ * @uses $vars['entity']
+ */
+
+$linkstr = '';
+if (isset($vars['entity']) && $vars['entity'] instanceof ElggEntity) {
+
+ $categories = $vars['entity']->universal_categories;
+ if (!empty($categories)) {
+ if (!is_array($categories)) {
+ $categories = array($categories);
+ }
+ foreach($categories as $category) {
+ $link = elgg_get_site_url() . 'pg/categories/list/?category=' . urlencode($category);
+ if (!empty($linkstr)) {
+ $linkstr .= ', ';
+ }
+ $linkstr .= '<a href="'.$link.'">' . $category . '</a>';
+ }
+ }
+
+}
+
+echo $linkstr;