10 lines
574 B
PHTML
10 lines
574 B
PHTML
<h3><?php echo $this->translate('Trusted Sites') ?></h3>
|
|
<div>
|
|
<?php echo $this->translate('Select view') ?>:
|
|
<select name="view" onchange="COMMID.stats.loadReport('sites', 'statsNumTrustedSites', 'type=' + this.value)">
|
|
<option value="week" <?php echo $this->weekSelected ?>><?= $this->translate('Last Week') ?></option>
|
|
<option value="year" <?php echo $this->yearSelected ?>><?= $this->translate('Last Year') ?></option>
|
|
</select>
|
|
</div>
|
|
<img src="<?php echo $this->base ?>/stats/sites/graph?rand=<?= $this->rand ?>&type=<?= $this->type ?>" />
|