22 lines
461 B
PHP
22 lines
461 B
PHP
<?php
|
|
|
|
use app\models\CollectionUploaded;
|
|
use yii\helpers\Html;
|
|
use yii\helpers\Url;
|
|
use yii\grid\ActionColumn;
|
|
use yii\grid\GridView;
|
|
|
|
/** @var yii\web\View $this */
|
|
/** @var app\models\CollectionUploadedSearch $searchModel */
|
|
/** @var yii\data\ActiveDataProvider $dataProvider */
|
|
|
|
$this->title = '文件收集';
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="collection-uploaded-index">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
|
|
</div>
|