$entry) { foreach ($entry as $a => $b) { // This function controls the alternating class $even_odd = ( 'odd' != $even_odd ) ? 'odd' : 'even'; if ($a == "__base__") { $a = elgg_echo("item:{$k}"); if (empty($a)) { $a = $k; } } else { $a = elgg_echo("item:{$k}:{$a}"); if (empty($a)) { $a = "$k $a"; } } $rows .= <<< END {$a}: {$b} END; } } $title = elgg_echo('usersettings:statistics:label:numentities'); $content = "$rows
"; echo elgg_view_module('info', $title, $content); }