setTitle('Producteurs') ;
?>
= Html::encode($this->title) ?>
=
GridView::widget([
'dataProvider' => $data_provider_producers,
'summary' => '',
'columns' => [
[
'attribute' => 'nom',
],
[
'attribute' => 'type',
],
[
'label' => 'Localisation',
'value' => function($model) {
return $model->ville. ' ('.$model->code_postal.')' ;
}
],
[
'label' => 'Lien',
'format' => 'raw',
'value' => function($model) {
$icon_lock = (strlen($model->code)) ? ' ' : '' ;
$html = Html::a('Visiter',Yii::$app->urlManagerProducer->createAbsoluteUrl(['site/index', 'slug_producer' => $model->slug]), ['class'=>'btn btn-primary']) ;
$html .= $icon_lock ;
return $html ;
}
],
]
]);
?>