项目清理工作

This commit is contained in:
Chenx221 2024-02-26 15:42:18 +08:00
parent 84886de324
commit e449f64f2c
Signed by: chenx221
GPG Key ID: D7A9EC07024C3021
9 changed files with 5 additions and 246 deletions

View File

@ -24,7 +24,6 @@ class CollectionUploadedController extends Controller
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
]
@ -38,83 +37,9 @@ class CollectionUploadedController extends Controller
*/
public function actionIndex()
{
$searchModel = new CollectionUploadedSearch();
$dataProvider = $searchModel->search($this->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
return $this->render('index');
}
/**
* 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.

View File

@ -3,6 +3,7 @@
namespace app\models;
use Yii;
use yii\db\ActiveRecord;
/**
* This is the model class for table "collection_uploaded".
@ -15,7 +16,7 @@ use Yii;
*
* @property CollectionTasks $task
*/
class CollectionUploaded extends \yii\db\ActiveRecord
class CollectionUploaded extends ActiveRecord
{
/**
* {@inheritdoc}

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -10,34 +10,12 @@ use yii\grid\GridView;
/** @var app\models\CollectionUploadedSearch $searchModel */
/** @var yii\data\ActiveDataProvider $dataProvider */
$this->title = '收集上传记录';
$this->title = '文件收集';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="collection-uploaded-index">
<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>

View File

@ -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>

View File

@ -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>

View File

@ -49,7 +49,7 @@ $dataProvider->query->andWhere(['task_id' => $model->id]);
<h2>文件收集情况:</h2>
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
// 'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'id',