Newer
Older
Andreas Åkre Solberg
committed
<?php
$this->data['header'] = 'Sanity check';
$this->includeAtTemplateBase('includes/header.php');
?>
<div id="content">
<h2><?php echo($this->data['header']); ?></h2>
<?php
if (count($this->data['errors']) > 0) {
?>
<div style="border: 1px solid #800; background: #caa; margin: 1em; padding: .5em">
<p><?php echo '<img style="float: right" src="/' . $this->data['baseurlpath'] . 'resources/icons/delete.png" alt="Failed" />'; ?>
Andreas Åkre Solberg
committed
These checks failed:</p>
<?php
echo '<ul>';
foreach ($this->data['errors'] AS $err) {
echo '<li>' . $err . '</li>';
}
echo '</ul>';
echo '</div>';
}
?>
<?php
if (count($this->data['info']) > 0) {
?>
<div style="border: 1px solid #ccc; background: #eee; margin: 1em; padding: .5em">
<p><?php echo '<img style="float: right" src="/' . $this->data['baseurlpath'] . 'resources/icons/accept.png" alt="OK" />'; ?>
Andreas Åkre Solberg
committed
These checks succeeded:</p>
<?php
echo '<ul>';
foreach ($this->data['info'] AS $i) {
echo '<li>' . $i . '</li>';
}
echo '</ul>';
echo '</div>';
}
?>
</div>
<?php $this->includeAtTemplateBase('includes/footer.php'); ?>