* * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ /** * @var array * @var $this yii\web\View * @var $searchModel \Da\User\Search\PermissionSearch */ use yii\grid\ActionColumn; use yii\grid\GridView; use yii\helpers\Url; $this->title = Yii::t('usuario', 'Permissions'); $this->params['breadcrumbs'][] = $this->title; ?> beginContent('@Da/User/resources/views/shared/admin_layout.php') ?> $dataProvider, 'filterModel' => $searchModel, 'layout' => "{items}\n{pager}", 'columns' => [ [ 'attribute' => 'name', 'header' => Yii::t('usuario', 'Name'), 'options' => [ 'style' => 'width: 20%', ], ], [ 'attribute' => 'description', 'header' => Yii::t('usuario', 'Description'), 'options' => [ 'style' => 'width: 55%', ], ], [ 'attribute' => 'rule_name', 'header' => Yii::t('usuario', 'Rule name'), 'options' => [ 'style' => 'width: 20%', ], ], [ 'class' => ActionColumn::className(), 'template' => '{update} {delete}', 'urlCreator' => function ($action, $model) { return Url::to(['/user/permission/'.$action, 'name' => $model['name']]); }, 'options' => [ 'style' => 'width: 5%', ], ], ], ] ) ?> endContent() ?>