CommunityID/plugins/stats/Top.phtml

11 lines
305 B
PHTML
Raw Normal View History

2019-07-17 20:08:50 +00:00
<table id="topTenTable">
2019-07-17 20:16:19 +00:00
<?php foreach ($this->sites as $num => $siteInfo): ?>
2019-07-17 20:08:50 +00:00
<tr>
2019-07-17 20:16:19 +00:00
<td><?php echo $num + 1 ?></td>
<td><?php echo $siteInfo['site'] ?></td>
<td>(<?php echo $this->translate('%s users', $siteInfo['num']) ?>)</td>
2019-07-17 20:08:50 +00:00
</tr>
2019-07-17 20:16:19 +00:00
<?php endforeach ?>
2019-07-17 20:08:50 +00:00
</table>