error.php
617 Bytes
<?php
/* @var $this yii\web\View */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */
use yii\helpers\Html;
$this->title = 'Ошибка';
?>
<div class="site-error">
<h1><?= Html::encode($this->title) ?></h1>
<div class="alert alert-danger">
<?php
echo nl2br(Html::encode($message));
if ( $action_name ) {
echo "<br/>";
echo "<br/>";
echo Html::a('Вернуться', $action_name, ['class' => 'btn btn-info', 'name' => 'Return',]);
}
?>
</div>
<p>
</p>
<p>
</p>
</div>