1234567891011121314151617181920212223242526272829303132 |
- <?php
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\Spider */
- $this->title = $model->name;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Spiders'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?= $this->render('../site/view_menu', [ 'model' => $model]) ?>
- <div class="box box-success">
- <div class="box-body">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'name',
- 'title',
- 'domain',
- 'page_dom',
- 'list_dom',
- 'time_dom',
- 'content_dom',
- 'title_dom',
- 'target_category',
- 'target_category_url:url',
- ],
- ]) ?>
- </div>
- </div>
|