Current File : /home/karenpetzb/application/modules/backoffice/views/scripts/statistic/clickstatsip.phtml |
<?php
function checkColorSource($source) {
$color = "black";
if ($source == 'Redirection : Hello Pro') {
$color = "blue";
}
return $color;
}
?>
<table cellpadding="0" cellspacing="5" border="0" width="200px">
<?php foreach($this->listSource as $row) : ?>
<tr style="color: <?php echo checkColorSource($row['Source']); ?>">
<td align="left">
<?php echo $row['Source']; ?>
</td>
<td align="center" ><?php echo $row['NbSource']; ?></td>
</tr>
<?php endforeach; ?>
</table>
<table cellpadding="0" cellspacing="5" border="0" width="500px">
<tr class="linkHeader" align="center">
<th width="150px">IP</th>
<th width="150px">SOURCE</th>
<th width="150px">CLICKS</th>
</tr>
<?php foreach($this->listIp as $row) { ?>
<tr style="color: <?php echo checkColorSource($row['Source']); ?>">
<td align="center">
<?php echo $row['Ip']; ?>
</td>
<td align="center" ><?php echo $row['Source']; ?></td>
<td align="center" ><?php echo $row['NbSource']; ?></td>
</tr>
<?php } ?>
</table>