title = Yii::t('backend/key', 'Keys'); $this->params['breadcrumbs'][] = $this->title; ?>
'btn btn-success']); ?>
= GridView::widget([ 'dataProvider' => $dataProvider, //'filterModel' => $searchModel, // ezt nem szeretjük 'columns' => [ // ['class' => 'yii\grid\SerialColumn'], // 'id_key', 'number', [ 'attribute' => 'status', 'value' => function ($model, $key, $index, $column){ $statuszok = Key::statuses(); $result = $statuszok[$model->status]; return $result; } ], //'status', 'type', 'created_at', // 'updated_at', [ 'class' => 'yii\grid\ActionColumn', 'template' => '{view} {update}', ], ], ]); ?>