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.
42 lines
1.2 KiB
42 lines
1.2 KiB
<?php |
|
|
|
use yii\grid\ActionColumn; |
|
use yii\helpers\Html; |
|
use yii\grid\GridView; |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $dataProvider yii\data\ArrayDataProvider */ |
|
|
|
$this->title = Yii::t('user', 'Roles'); |
|
$this->params['breadcrumbs'][] = $this->title; |
|
?> |
|
<div class="users-rbac-role-index"> |
|
|
|
<p> |
|
<?= Html::a(Yii::t('user', 'Create Role'), ['create'], ['class' => 'btn btn-success']) ?> |
|
</p> |
|
|
|
<div class="box box-default"> |
|
<div class="box-body"> |
|
<?= GridView::widget([ |
|
'dataProvider' => $dataProvider, |
|
'columns' => [ |
|
[ |
|
'attribute' => 'name', |
|
'label' => Yii::t('user', 'Role Name'), |
|
], |
|
[ |
|
'attribute' => 'description', |
|
'label' => Yii::t('user', 'Role Description'), |
|
], |
|
[ |
|
'class' => ActionColumn::class, |
|
'options' => ['style' => 'width: 100px;'], |
|
'contentOptions' => ['class' => 'text-center'], |
|
], |
|
], |
|
]); ?> |
|
</div> |
|
</div> |
|
|
|
</div>
|
|
|