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>
|