You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.6 KiB
50 lines
1.6 KiB
<?php |
|
|
|
use yii\helpers\ArrayHelper; |
|
use yii\helpers\Html; |
|
use yii\widgets\DetailView; |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $model \yii\rbac\Role */ |
|
|
|
$this->title = $model->name; |
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Permissions'), 'url' => ['index']]; |
|
$this->params['breadcrumbs'][] = $this->title; |
|
?> |
|
<div class="users-rbac-permission-view"> |
|
|
|
<p> |
|
<?= Html::a(Yii::t('user', 'Permissions'), ['index'], ['class' => 'btn btn-default']) ?> |
|
<?= Html::a(Yii::t('buttons', 'Edit'), ['update', 'id' => $model->name], ['class' => 'btn btn-primary']) ?> |
|
<?= Html::a(Yii::t('buttons', 'Delete'), ['delete', 'id' => $model->name], [ |
|
'class' => 'btn btn-danger', |
|
'data' => [ |
|
'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), |
|
'method' => 'post', |
|
], |
|
]) ?> |
|
</p> |
|
|
|
<div class="box box-default"> |
|
<div class="box-body"> |
|
<?= DetailView::widget([ |
|
'model' => $model, |
|
'attributes' => [ |
|
[ |
|
'attribute' => 'name', |
|
'label' => Yii::t('user', 'Role Name'), |
|
], |
|
[ |
|
'attribute' => 'description', |
|
'label' => Yii::t('user', 'Role Description'), |
|
], |
|
[ |
|
'attribute' => 'ruleName', |
|
'label' => Yii::t('user', 'Rule Name'), |
|
], |
|
], |
|
]) ?> |
|
</div> |
|
</div> |
|
|
|
</div>
|
|
|