18 lines
446 B
PHTML
18 lines
446 B
PHTML
<?php if ($this->title): ?>
|
|
<div class="controls">
|
|
<h1><?= $this->escape($title) ?></h1>
|
|
</div>
|
|
<?php endif ?>
|
|
<div class="content">
|
|
<?php if ($this->message): ?>
|
|
<p><strong><?= nl2br($this->escape($message)) ?></strong></p>
|
|
<?php endif ?>
|
|
<?php if (isset($stackTrace)) : ?>
|
|
<hr />
|
|
<pre><?= $this->escape($stackTrace) ?></pre>
|
|
<?php endif ?>
|
|
<?php if (isset($this->messageBox)) : ?>
|
|
<?= $this->messageBox->render(); ?>
|
|
<? endif ?>
|
|
</div>
|