aboutsummaryrefslogtreecommitdiff
path: root/mod/cool_theme/views/default/groups/profile/fields.php
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:46:48 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:46:48 -0300
commita89ba6df7133bc7f0b8ea96d4a5673887b267af4 (patch)
treee6850ce6c3f894b3867d172cbdea6cd75031ab26 /mod/cool_theme/views/default/groups/profile/fields.php
parent0d860aca4fda73fce303dad41003e61f040acca8 (diff)
parent5041c6c48153453ed597206d08eeff37cf20e676 (diff)
downloadelgg-a89ba6df7133bc7f0b8ea96d4a5673887b267af4.tar.gz
elgg-a89ba6df7133bc7f0b8ea96d4a5673887b267af4.tar.bz2
Merge commit '5041c6c48153453ed597206d08eeff37cf20e676' as 'mod/cool_theme'
Diffstat (limited to 'mod/cool_theme/views/default/groups/profile/fields.php')
-rw-r--r--mod/cool_theme/views/default/groups/profile/fields.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/mod/cool_theme/views/default/groups/profile/fields.php b/mod/cool_theme/views/default/groups/profile/fields.php
new file mode 100644
index 000000000..6a666cfb7
--- /dev/null
+++ b/mod/cool_theme/views/default/groups/profile/fields.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Group profile fields
+ */
+
+$group = $vars['entity'];
+
+$profile_fields = elgg_get_config('group');
+
+echo "<dl class=\"elgg-profile\">";
+if (is_array($profile_fields) && count($profile_fields) > 0) {
+
+ foreach ($profile_fields as $key => $valtype) {
+ // do not show the name
+ if ($key == 'name') {
+ continue;
+ }
+
+ $value = $group->$key;
+ if (empty($value)) {
+ continue;
+ }
+
+ $options = array('value' => $group->$key);
+ if ($valtype == 'tags') {
+ $options['tag_names'] = $key;
+ }
+
+ echo "<dt>";
+ echo elgg_echo("groups:$key");
+ echo "</dt><dd>";
+ echo elgg_view("output/$valtype", $options);
+ echo "</dd>";
+ }
+}
+echo "</dl>"; \ No newline at end of file