title = Yii::t('common', 'Spiders');
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header') ?>
= $this->title . ' ' . Html::a(Yii::t('common', 'Create Spider'), ['create'], ['class' => 'btn btn-success']) ?>
endBlock() ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'columns' => [
'id',
'name',
'title',
'domain',
'target_category',
// 'target_category_url',
[
'class' => 'common\helpers\DiyActionColumn',
'template' => '{view} {update} {delete} {crawl}',
'buttons' => [
'crawl' => function($url, $model, $key) {
return Html::a('采集', $url, ['data-method' => 'post', 'data-ajax' => 1, 'class' => 'btn btn-default btn-xs']);
}
]
],
],
]); ?>