title = '区块';
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header'); ?>
= GridView::widget([
'dataProvider' => $dataProvider,
"columns"=>[
'block_id',
[
'attribute' => 'title',
"format"=>"html",
'value'=>function($model, $key, $index, $column)
{
$params = is_array($key) ? $key : ['id' => (string) $key];
$params[0] = "update";
$value = ArrayHelper::getValue($model, $column->attribute);
return Html::a($value,$params);
}
],
'slug',
'type',
[
'class' => 'yii\grid\ActionColumn',
'template'=>"{update} {delete}"
]
]
]);
?>