项目清理工作
This commit is contained in:
parent
84886de324
commit
e449f64f2c
@ -24,7 +24,6 @@ class CollectionUploadedController extends Controller
|
|||||||
'verbs' => [
|
'verbs' => [
|
||||||
'class' => VerbFilter::className(),
|
'class' => VerbFilter::className(),
|
||||||
'actions' => [
|
'actions' => [
|
||||||
'delete' => ['POST'],
|
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
]
|
]
|
||||||
@ -38,83 +37,9 @@ class CollectionUploadedController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function actionIndex()
|
public function actionIndex()
|
||||||
{
|
{
|
||||||
$searchModel = new CollectionUploadedSearch();
|
return $this->render('index');
|
||||||
$dataProvider = $searchModel->search($this->request->queryParams);
|
|
||||||
|
|
||||||
return $this->render('index', [
|
|
||||||
'searchModel' => $searchModel,
|
|
||||||
'dataProvider' => $dataProvider,
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays a single CollectionUploaded model.
|
|
||||||
* @param int $id ID
|
|
||||||
* @return string
|
|
||||||
* @throws NotFoundHttpException if the model cannot be found
|
|
||||||
*/
|
|
||||||
public function actionView($id)
|
|
||||||
{
|
|
||||||
return $this->render('view', [
|
|
||||||
'model' => $this->findModel($id),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new CollectionUploaded model.
|
|
||||||
* If creation is successful, the browser will be redirected to the 'view' page.
|
|
||||||
* @return string|\yii\web\Response
|
|
||||||
*/
|
|
||||||
public function actionCreate()
|
|
||||||
{
|
|
||||||
$model = new CollectionUploaded();
|
|
||||||
|
|
||||||
if ($this->request->isPost) {
|
|
||||||
if ($model->load($this->request->post()) && $model->save()) {
|
|
||||||
return $this->redirect(['view', 'id' => $model->id]);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$model->loadDefaultValues();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->render('create', [
|
|
||||||
'model' => $model,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates an existing CollectionUploaded model.
|
|
||||||
* If update is successful, the browser will be redirected to the 'view' page.
|
|
||||||
* @param int $id ID
|
|
||||||
* @return string|\yii\web\Response
|
|
||||||
* @throws NotFoundHttpException if the model cannot be found
|
|
||||||
*/
|
|
||||||
public function actionUpdate($id)
|
|
||||||
{
|
|
||||||
$model = $this->findModel($id);
|
|
||||||
|
|
||||||
if ($this->request->isPost && $model->load($this->request->post()) && $model->save()) {
|
|
||||||
return $this->redirect(['view', 'id' => $model->id]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->render('update', [
|
|
||||||
'model' => $model,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Deletes an existing CollectionUploaded model.
|
|
||||||
* If deletion is successful, the browser will be redirected to the 'index' page.
|
|
||||||
* @param int $id ID
|
|
||||||
* @return \yii\web\Response
|
|
||||||
* @throws NotFoundHttpException if the model cannot be found
|
|
||||||
*/
|
|
||||||
public function actionDelete($id)
|
|
||||||
{
|
|
||||||
$this->findModel($id)->delete();
|
|
||||||
|
|
||||||
return $this->redirect(['index']);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Finds the CollectionUploaded model based on its primary key value.
|
* Finds the CollectionUploaded model based on its primary key value.
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
namespace app\models;
|
namespace app\models;
|
||||||
|
|
||||||
use Yii;
|
use Yii;
|
||||||
|
use yii\db\ActiveRecord;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is the model class for table "collection_uploaded".
|
* This is the model class for table "collection_uploaded".
|
||||||
@ -15,7 +16,7 @@ use Yii;
|
|||||||
*
|
*
|
||||||
* @property CollectionTasks $task
|
* @property CollectionTasks $task
|
||||||
*/
|
*/
|
||||||
class CollectionUploaded extends \yii\db\ActiveRecord
|
class CollectionUploaded extends ActiveRecord
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
use yii\helpers\Html;
|
|
||||||
use yii\widgets\ActiveForm;
|
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
|
||||||
/** @var app\models\CollectionUploaded $model */
|
|
||||||
/** @var yii\widgets\ActiveForm $form */
|
|
||||||
?>
|
|
||||||
|
|
||||||
<div class="collection-uploaded-form">
|
|
||||||
|
|
||||||
<?php $form = ActiveForm::begin(); ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'task_id')->textInput() ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'uploader_ip')->textInput(['maxlength' => true]) ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'uploaded_at')->textInput() ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'subfolder_name')->textInput(['maxlength' => true]) ?>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<?= Html::submitButton('Save', ['class' => 'btn btn-success']) ?>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php ActiveForm::end(); ?>
|
|
||||||
|
|
||||||
</div>
|
|
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
use yii\helpers\Html;
|
|
||||||
use yii\widgets\ActiveForm;
|
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
|
||||||
/** @var app\models\CollectionUploadedSearch $model */
|
|
||||||
/** @var yii\widgets\ActiveForm $form */
|
|
||||||
?>
|
|
||||||
|
|
||||||
<div class="collection-uploaded-search">
|
|
||||||
|
|
||||||
<?php $form = ActiveForm::begin([
|
|
||||||
'action' => ['index'],
|
|
||||||
'method' => 'get',
|
|
||||||
]); ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'id') ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'task_id') ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'uploader_ip') ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'uploaded_at') ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'subfolder_name') ?>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
|
|
||||||
<?= Html::resetButton('Reset', ['class' => 'btn btn-outline-secondary']) ?>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php ActiveForm::end(); ?>
|
|
||||||
|
|
||||||
</div>
|
|
@ -1,20 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
use yii\helpers\Html;
|
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
|
||||||
/** @var app\models\CollectionUploaded $model */
|
|
||||||
|
|
||||||
$this->title = 'Create Collection Uploaded';
|
|
||||||
$this->params['breadcrumbs'][] = ['label' => 'Collection Uploadeds', 'url' => ['index']];
|
|
||||||
$this->params['breadcrumbs'][] = $this->title;
|
|
||||||
?>
|
|
||||||
<div class="collection-uploaded-create">
|
|
||||||
|
|
||||||
<h1><?= Html::encode($this->title) ?></h1>
|
|
||||||
|
|
||||||
<?= $this->render('_form', [
|
|
||||||
'model' => $model,
|
|
||||||
]) ?>
|
|
||||||
|
|
||||||
</div>
|
|
@ -10,34 +10,12 @@ use yii\grid\GridView;
|
|||||||
/** @var app\models\CollectionUploadedSearch $searchModel */
|
/** @var app\models\CollectionUploadedSearch $searchModel */
|
||||||
/** @var yii\data\ActiveDataProvider $dataProvider */
|
/** @var yii\data\ActiveDataProvider $dataProvider */
|
||||||
|
|
||||||
$this->title = '收集上传记录';
|
$this->title = '文件收集';
|
||||||
$this->params['breadcrumbs'][] = $this->title;
|
$this->params['breadcrumbs'][] = $this->title;
|
||||||
?>
|
?>
|
||||||
<div class="collection-uploaded-index">
|
<div class="collection-uploaded-index">
|
||||||
|
|
||||||
<h1><?= Html::encode($this->title) ?></h1>
|
<h1><?= Html::encode($this->title) ?></h1>
|
||||||
|
|
||||||
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
|
|
||||||
|
|
||||||
<?= GridView::widget([
|
|
||||||
'dataProvider' => $dataProvider,
|
|
||||||
'filterModel' => $searchModel,
|
|
||||||
'columns' => [
|
|
||||||
['class' => 'yii\grid\SerialColumn'],
|
|
||||||
|
|
||||||
'id',
|
|
||||||
'task_id',
|
|
||||||
'uploader_ip',
|
|
||||||
'uploaded_at',
|
|
||||||
'subfolder_name',
|
|
||||||
[
|
|
||||||
'class' => ActionColumn::className(),
|
|
||||||
'urlCreator' => function ($action, CollectionUploaded $model, $key, $index, $column) {
|
|
||||||
return Url::toRoute([$action, 'id' => $model->id]);
|
|
||||||
}
|
|
||||||
],
|
|
||||||
],
|
|
||||||
]); ?>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
use yii\helpers\Html;
|
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
|
||||||
/** @var app\models\CollectionUploaded $model */
|
|
||||||
|
|
||||||
$this->title = 'Update Collection Uploaded: ' . $model->id;
|
|
||||||
$this->params['breadcrumbs'][] = ['label' => 'Collection Uploadeds', 'url' => ['index']];
|
|
||||||
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
|
|
||||||
$this->params['breadcrumbs'][] = 'Update';
|
|
||||||
?>
|
|
||||||
<div class="collection-uploaded-update">
|
|
||||||
|
|
||||||
<h1><?= Html::encode($this->title) ?></h1>
|
|
||||||
|
|
||||||
<?= $this->render('_form', [
|
|
||||||
'model' => $model,
|
|
||||||
]) ?>
|
|
||||||
|
|
||||||
</div>
|
|
@ -1,40 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
use yii\helpers\Html;
|
|
||||||
use yii\widgets\DetailView;
|
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
|
||||||
/** @var app\models\CollectionUploaded $model */
|
|
||||||
|
|
||||||
$this->title = $model->id;
|
|
||||||
$this->params['breadcrumbs'][] = ['label' => 'Collection Uploadeds', 'url' => ['index']];
|
|
||||||
$this->params['breadcrumbs'][] = $this->title;
|
|
||||||
\yii\web\YiiAsset::register($this);
|
|
||||||
?>
|
|
||||||
<div class="collection-uploaded-view">
|
|
||||||
|
|
||||||
<h1><?= Html::encode($this->title) ?></h1>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<?= Html::a('Update', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
|
|
||||||
<?= Html::a('Delete', ['delete', 'id' => $model->id], [
|
|
||||||
'class' => 'btn btn-danger',
|
|
||||||
'data' => [
|
|
||||||
'confirm' => 'Are you sure you want to delete this item?',
|
|
||||||
'method' => 'post',
|
|
||||||
],
|
|
||||||
]) ?>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<?= DetailView::widget([
|
|
||||||
'model' => $model,
|
|
||||||
'attributes' => [
|
|
||||||
'id',
|
|
||||||
'task_id',
|
|
||||||
'uploader_ip',
|
|
||||||
'uploaded_at',
|
|
||||||
'subfolder_name',
|
|
||||||
],
|
|
||||||
]) ?>
|
|
||||||
|
|
||||||
</div>
|
|
@ -49,7 +49,7 @@ $dataProvider->query->andWhere(['task_id' => $model->id]);
|
|||||||
<h2>文件收集情况:</h2>
|
<h2>文件收集情况:</h2>
|
||||||
<?= GridView::widget([
|
<?= GridView::widget([
|
||||||
'dataProvider' => $dataProvider,
|
'dataProvider' => $dataProvider,
|
||||||
'filterModel' => $searchModel,
|
// 'filterModel' => $searchModel,
|
||||||
'columns' => [
|
'columns' => [
|
||||||
['class' => 'yii\grid\SerialColumn'],
|
['class' => 'yii\grid\SerialColumn'],
|
||||||
'id',
|
'id',
|
||||||
|
Loading…
Reference in New Issue
Block a user