CommunityID/modules/stats/views/scripts/top/index.phtml

11 lines
368 B
PHTML
Raw Normal View History

2019-07-17 20:16:19 +00:00
<h3><?php echo $this->translate('Top 10 Trusted Sites') ?></h3>
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>