167 lines
4.4 KiB
PHP
Executable File
167 lines
4.4 KiB
PHP
Executable File
<?php
|
|
|
|
namespace backend\modules\project\controllers;
|
|
|
|
use common\models\FieldsValue;
|
|
use common\models\FieldsValueNew;
|
|
use common\models\Hh;
|
|
use common\models\HhJob;
|
|
use common\models\ProjectUser;
|
|
use Yii;
|
|
use backend\modules\project\models\Project;
|
|
use backend\modules\project\models\ProjectSearch;
|
|
use yii\data\ActiveDataProvider;
|
|
use yii\web\Controller;
|
|
use yii\web\NotFoundHttpException;
|
|
use yii\filters\VerbFilter;
|
|
|
|
/**
|
|
* ProjectController implements the CRUD actions for Project model.
|
|
*/
|
|
class ProjectController extends Controller
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function behaviors()
|
|
{
|
|
return [
|
|
'verbs' => [
|
|
'class' => VerbFilter::className(),
|
|
'actions' => [
|
|
'delete' => ['POST'],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Lists all Project models.
|
|
* @return mixed
|
|
*/
|
|
public function actionIndex()
|
|
{
|
|
$searchModel = new ProjectSearch();
|
|
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
|
|
|
return $this->render('index', [
|
|
'searchModel' => $searchModel,
|
|
'dataProvider' => $dataProvider,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Displays a single Project model.
|
|
* @param integer $id
|
|
* @return mixed
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
*/
|
|
public function actionView($id)
|
|
{
|
|
$model = $this->findModel($id);
|
|
|
|
$jobsProvider = null;
|
|
if($model->hh_id){
|
|
$hh = Hh::findOne($model->hh_id);
|
|
$jobsProvider = new ActiveDataProvider([
|
|
'query' => HhJob::find()->where(['employer_id' => $hh->hh_id]),
|
|
'pagination' => [
|
|
'pageSize' => 200,
|
|
],
|
|
]);
|
|
}
|
|
|
|
|
|
$dataProvider = new ActiveDataProvider([
|
|
'query' => FieldsValueNew::find()
|
|
->where(['item_id' => $id, 'item_type' => FieldsValueNew::TYPE_PROJECT])
|
|
->orderBy('order'),
|
|
'pagination' => [
|
|
'pageSize' => 200,
|
|
],
|
|
]);
|
|
|
|
$dataProviderUser = new ActiveDataProvider([
|
|
'query' => ProjectUser::find()->where(['project_id' => $id]),
|
|
'pagination' => [
|
|
'pageSize' => 200,
|
|
],
|
|
]);
|
|
|
|
return $this->render('view', [
|
|
'model' => $model,
|
|
'modelFildValue' => $dataProvider,
|
|
'modelUser' => $dataProviderUser,
|
|
'jobsProvider' => $jobsProvider,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Creates a new Project model.
|
|
* If creation is successful, the browser will be redirected to the 'view' page.
|
|
* @return mixed
|
|
*/
|
|
public function actionCreate()
|
|
{
|
|
$model = new Project();
|
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->save()) {
|
|
return $this->redirect(['view', 'id' => $model->id]);
|
|
}
|
|
|
|
return $this->render('create', [
|
|
'model' => $model,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Updates an existing Project model.
|
|
* If update is successful, the browser will be redirected to the 'view' page.
|
|
* @param integer $id
|
|
* @return mixed
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
*/
|
|
public function actionUpdate($id)
|
|
{
|
|
$model = $this->findModel($id);
|
|
|
|
if ($model->load(Yii::$app->request->post()) && $model->save()) {
|
|
return $this->redirect(['view', 'id' => $model->id]);
|
|
}
|
|
|
|
return $this->render('update', [
|
|
'model' => $model,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Deletes an existing Project model.
|
|
* If deletion is successful, the browser will be redirected to the 'index' page.
|
|
* @param integer $id
|
|
* @return mixed
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
*/
|
|
public function actionDelete($id)
|
|
{
|
|
$this->findModel($id)->delete();
|
|
|
|
return $this->redirect(['index']);
|
|
}
|
|
|
|
/**
|
|
* Finds the Project model based on its primary key value.
|
|
* If the model is not found, a 404 HTTP exception will be thrown.
|
|
* @param integer $id
|
|
* @return Project the loaded model
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
*/
|
|
protected function findModel($id)
|
|
{
|
|
if (($model = Project::findOne($id)) !== null) {
|
|
return $model;
|
|
}
|
|
|
|
throw new NotFoundHttpException('The requested page does not exist.');
|
|
}
|
|
}
|