diff options
Diffstat (limited to 'mod/cool_theme/views/default/groups')
4 files changed, 141 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 diff --git a/mod/cool_theme/views/default/groups/profile/profile_block.php b/mod/cool_theme/views/default/groups/profile/profile_block.php new file mode 100644 index 000000000..9dcad2715 --- /dev/null +++ b/mod/cool_theme/views/default/groups/profile/profile_block.php @@ -0,0 +1,69 @@ +<?php +/** + * Group profile + * + * Icon and profile fields + * + * @uses $vars['group'] + */ + +if (!isset($vars['entity']) || !$vars['entity']) { + echo elgg_echo('groups:notfound'); + return true; +} + +$group = $vars['entity']; +$owner = $group->getOwnerEntity(); + +$profile_fields = elgg_get_config('group'); + +?> +<div class="groups-profile clearfix"> + <div class="groups-profile-fields elgg-body"> + <p> + <b><?php echo elgg_echo("groups:owner"); ?>: </b> + <?php + echo elgg_view('output/url', array( + 'text' => $owner->name, + 'value' => $owner->getURL(), + )); + ?> + </p> + <p> + <?php + echo elgg_echo('groups:members') . ": " . $group->getMembers(0, 0, TRUE); + ?> + </p> +<?php +if (is_array($profile_fields) && count($profile_fields) > 0) { + + $even_odd = 'odd'; + 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 "<p class=\"{$even_odd}\">"; + echo "<b>"; + echo elgg_echo("groups:$key"); + echo ": </b>"; + echo elgg_view("output/$valtype", $options); + echo "</p>"; + + $even_odd = ($even_odd == 'even') ? 'odd' : 'even'; + } +} +?> + </div> +</div> diff --git a/mod/cool_theme/views/default/groups/profile/stats.php b/mod/cool_theme/views/default/groups/profile/stats.php new file mode 100644 index 000000000..9289cbab9 --- /dev/null +++ b/mod/cool_theme/views/default/groups/profile/stats.php @@ -0,0 +1,19 @@ +<?php + +$group = $vars['entity']; +$owner = $group->getOwnerEntity(); + +?> +<dl class="elgg-profile"> + <dt><?php echo elgg_echo("groups:owner"); ?></dt> + <dd> + <?php + echo elgg_view('output/url', array( + 'text' => $owner->name, + 'value' => $owner->getURL(), + )); + ?> + </dd> + <dt><?php echo elgg_echo('groups:members'); ?></dt> + <dd><?php echo $group->getMembers(0, 0, TRUE); ?></dd> +</dl>
\ No newline at end of file diff --git a/mod/cool_theme/views/default/groups/profile/summary.php b/mod/cool_theme/views/default/groups/profile/summary.php new file mode 100644 index 000000000..8b4c0fadf --- /dev/null +++ b/mod/cool_theme/views/default/groups/profile/summary.php @@ -0,0 +1,17 @@ +<?php +/** + * Group profile summary + * + * Icon and profile fields + * + * @uses $vars['group'] + */ + +if (!isset($vars['entity']) || !$vars['entity']) { + echo elgg_echo('groups:notfound'); + return true; +} + +echo elgg_view_module('info', 'Info', elgg_view('groups/profile/fields', $vars)); + +echo elgg_view_module('info', 'Stats', elgg_view('groups/profile/stats', $vars)); |