Диплом: Автоматизация приема и обработки заявок отделом техподдержки (на примере ООО "Гарпикс")

Внимание! Если размещение файла нарушает Ваши авторские права, то обязательно сообщите нам
120
/**
* Creates a new Defect model.
* If creation is successful, the browser will be redirected to the 'view' page.
*
* @return mixed
*/
public function actionCreate()
{
Yii::$app->user->identity->accessAdminOnly;
$model = new Defect();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
} else {
return $this->render('create', ['model' => $model,]);
}
}
/**
* Updates an existing Defect model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
*
* @return mixed
*/
public function actionUpdate($id)
{
Yii::$app->user->identity->accessAdminOnly;
$model = $this->findModel($id);
121
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
} else {
return $this->render('update', ['model' => $model,]);
}
}
/**
* Deletes an existing Defect model
* If deletion is successful, the browser will be redirected to the 'index'
page.
* @param integer $id
*
* @return mixed
*/
public function actionDelete($id)
{
Yii::$app->user->identity->accessAdminOnly;
$this->findModel($id)->delete();
return $this->redirect(['index']);
}
/**
* Finds the Defect model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
*
* @return Defect the loaded model
* @throws NotFoundHttpException if the model cannot be found
122
*/
protected function findModel($id)
{
if (($model = Defect::findOne($id)) !== null) {
return $model;
} else {
throw new NotFoundHttpException('The requested page does not
exist.');
}
}
}
?>
<?php
namespace app\controllers;
use Yii;
use app\models\Defect;
use yii\data\ActiveDataProvider;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii\filters\AccessControl;
/**
* PriorityController implements the CRUD actions for Priority model.
*/
class PriorityController extends Controller
{
public function behaviors()
123
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => [
'post'
],
],
],
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
'actions' => ['index', 'view', 'create', 'update', 'delete'],
'allow' => true,
'roles' => [
'@'
],
],
],
],
];
}
/** Lists all Priority models.
*
* @return mixed
*/
124
public function actionIndex()
{
Yii::$app->user->identity->accessAdminOnly;
$dataProvider = new ActiveDataProvider(['query' => Priority::find(),]);
return $this->render('index', ['dataProvider' => $dataProvider,]);
}
/**
* Displays a single Priority model.
* @param integer $id
*
* @return mixed
*/
public function actionView($id)
{
Yii::$app->user->identity->accessAdminOnly;
return $this->render('view', ['model' => $this->findModel($id),]);
}
/**
* Creates a new Priority model.
* If creation is successful, the browser will be redirected to the 'view' page.
*
* @return mixed
*/
public
function actionCreate()
{
Yii::$app->user->identity->accessAdminOnly;
125
$model = new Priority();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
} else {
return $this->render('create', ['model' => $model,]);
}
}
/**
* Updates an existing Priority model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
*
* @return mixed
*/
public
function actionUpdate($id)
{
Yii::$app->user->identity->accessAdminOnly;
$model = $this->findModel($id);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
} else {
return $this->render('update', ['model' => $model,]);
}
}
/**
* Deletes an existing Priority model.
126
* If deletion is successful, the browser will be redirected to the 'index'
page.
* @param integer $id
*
* @return mixed
*/
public
function actionDelete($id)
{
Yii::$app->user->identity->accessAdminOnly;
$this->findModel($id)->delete();
return $this->redirect(['index']);
}
/**
* Finds the Priority model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
*
* @return Priority the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected
function findModel($id)
{
if (($model = Priority::findOne($id)) !== null) {
return $model;
} else {
127
throw new NotFoundHttpException('The requested page does not
exist.');
}
}
}

Смотрите также:

"Автоматизация обработки заявок ООО "Проектно-Строительная Компания"
"Автоматизация процесса аттестации персонала для ООО "Нэт Бай Нэт Холдинг"
"Анализ интернет-активности конкурентов ( на примере конкурентов "Газпром нефть")
"Бухгалтерский учёт и аудит расчётов с подотчётними лицами в организации на примере ООО "ЛОЦ 10""
«Психологическое сопровождение персонала в организации на примере ООО «Крокус»
Cовершенствование деловой оценки персонала в организации (на примере ООО "Даймонд кейтеринг развитие")
IPO - инструмент финансирования деятельности организации. На примере ПАО «Нефтяная компания «Лукойл»
PR как средство продвижения организации (на примере ПАО "Тамбовский завод "Комсомолец им. Н.С. Артемова")
PR-коммуникации в сфере общественного питания (на примере кафе-кондитерской «Cream Cheese»)
SMM как средство повышения эффективности работы учреждений социокультурной сферы (на примере Малого театра)