"; 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 "
"; echo elgg_echo("groups:$key"); echo "
"; echo elgg_view("output/$valtype", $options); echo "
"; } } echo "";