Rafalsky/HomeFinance

View on GitHub
wallet/views/site/error.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use yii\helpers\Html;

/* @var $this yii\web\View */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */

$this->title = $name;
?>
<div class="error">
    <div class="row">
        <div class="col-xs-12">
            <div class="error-content text-center">
                <h3 class="headline">
                    <i class="fa fa-warning text-yellow"></i>
                    <?= \Yii::t(
                        'wallet',
                        'Error {code}',
                        [
                            'code' => property_exists($exception, 'statusCode') ? $exception->statusCode : 500
                        ]);
                    ?>
                </h3>
                <p>
                    <?= nl2br(Html::encode($message)); ?>
                </p>
            </div>
        </div>
    </div>
</div><!-- /.error-page -->