Skip to content

Instantly share code, notes, and snippets.

@ildarusmanov
Created October 27, 2017 08:38
Show Gist options
  • Save ildarusmanov/7d376ada296aff91a25483672f84606d to your computer and use it in GitHub Desktop.
Save ildarusmanov/7d376ada296aff91a25483672f84606d to your computer and use it in GitHub Desktop.
error.php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $code int */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */
$this->title = 'Нет доступа';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="jumbotron">
<h1>Нет доступа</h1>
<h3>Недостаточно прав на совершение действия</h3>
<p><?= Html::a('На главную', Yii::$app->homeUrl, ['class' => 'btn btn-primary']) ?></p>
</div>
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $code int */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */
$this->title = 'Ошибка';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="jumbotron">
<h1>Ошибка # <?= $code; ?></h1>
<h3>Упс! Что-то пошло не так.</h3>
<p class="text-danger"><?= $message; ?></p>
<p>Мы уже работаем над проблемой!<br>Повторите через несколько минут.</p>
<p><?= Html::a('На главную', Yii::$app->homeUrl, ['class' => 'btn btn-primary']) ?></p>
</div>
<?php
if ($code == 403) {
$this->render('_403', ['message' => $message]);
} else {
$this->render('_default_error', ['code' => $code, 'message' => $message]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment