guild/backend/modules/company/controllers/CompanyController.php

161 lines
4.4 KiB
PHP
Raw Normal View History

2018-10-11 17:24:47 +03:00
<?php
namespace backend\modules\company\controllers;
2019-06-26 17:22:10 +03:00
use common\models\FieldsValueNew;
2018-10-11 17:24:47 +03:00
use Yii;
use backend\modules\company\models\Company;
use backend\modules\company\models\CompanySearch;
2019-06-26 17:22:10 +03:00
use yii\data\ActiveDataProvider;
2020-01-29 11:26:01 +03:00
use yii\filters\AccessControl;
2018-10-11 17:24:47 +03:00
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
/**
* CompanyController implements the CRUD actions for Company model.
*/
class CompanyController extends Controller
{
/**
* {@inheritdoc}
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
2020-01-29 11:26:01 +03:00
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
'allow' => true,
'roles' => ['admin'],
],
],
],
2020-08-06 13:19:20 +03:00
'log' => [
'class' => \common\behaviors\LogBehavior::class,
]
2018-10-11 17:24:47 +03:00
];
}
/**
* Lists all Company models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new CompanySearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
/**
* Displays a single Company model.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionView($id)
{
2019-06-26 17:22:10 +03:00
$dataProviderF = new ActiveDataProvider([
'query' => FieldsValueNew::find()
->where(['item_id' => $id, 'item_type' => FieldsValueNew::TYPE_COMPANY])
->orderBy('order'),
'pagination' => [
'pageSize' => 200,
],
]);
2020-08-06 13:19:20 +03:00
$changeDataProvider = new ActiveDataProvider([
'query' => \common\models\ChangeHistory::find()->where(['type_id' => $this->findModel($id)->id]),
'pagination' => [
'pageSize' => 200,
]
]);
2018-10-11 17:24:47 +03:00
return $this->render('view', [
'model' => $this->findModel($id),
2020-08-06 13:19:20 +03:00
'dataProviderF' => $dataProviderF,
'changeDataProvider' => $changeDataProvider,
2018-10-11 17:24:47 +03:00
]);
}
/**
* Creates a new Company model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new Company();
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 Company 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 Company 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 Company model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return Company the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = Company::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
}