123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /*
- * @var yii\web\View $this
- * @var rbac\models\AuthItem $model
- */
- $this->title = $model->name;
- $this->params['breadcrumbs'][] = ['label' => 'Rules', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="auth-item-view">
- <p>
- <?= Html::a(Yii::t('rbac', 'Update'), ['update', 'id' => $model->name], ['class' => 'btn btn-primary btn-flat']) ?>
- <?php
- echo Html::a(Yii::t('rbac', 'Delete'), ['delete', 'id' => $model->name], [
- 'class' => 'btn btn-danger',
- 'data-confirm' => Yii::t('rbac', 'Are you sure to delete this item?'),
- 'data-method' => 'post',
- ]);
- ?>
- </p>
- <?php
- echo DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'name',
- 'className',
- ],
- ]);
- ?>
- </div>
|