title = 'Текстовые страницы'; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a('Добавить', ['create'], ['class' => 'btn btn-success']) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], //'id', 'name', 'code', //'content:ntext', 'sort', // 'title', // 'kwords', // 'descr', [ 'format' => 'raw', 'filter' => [ '1'=>'Отображаются', '0'=>'Скрытые', ], 'value' => function($data){ if($data->is_active){ $status_img = ''; } else { $status_img = ''; } return $status_img; }, 'attribute'=>'is_active', ], ['class' => 'yii\grid\ActionColumn'], ], ]); ?>