Дипломная работа: Автоматизация приема и анализа технической поддержки ООО "Мой Магазин"

Внимание! Если размещение файла нарушает Ваши авторские права, то обязательно сообщите нам
126
ПРИЛОЖЕНИЕ 1. ЛИСТИНГ ПРОГРАММНЫХ МОДУЛЕЙ
ObjectController.php
<?php
namespace app\controllers;
use Yii;
use app\models\Object;
use app\models\ObjectSearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii\filters\AccessControl;
/**
* ObjectController implements the CRUD actions for Object model.
*/
class ObjectController extends Controller
{
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'rules' =>
[
[
'actions' => ['index', 'view', 'create', 'update', 'delete'],
'allow' => true,
127
'roles' => ['@'],
'matchCallback' => function ($rule, $action)
{
return Yii::$app->user->identity->IsAdmin || Yii::$app->user->identity->IsExpert;
}
],
],
],
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['post'],
],
],
];
}
/**
* Lists all Object models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new ObjectSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
128
]);
}
/**
* Displays a single Object model.
* @param integer $id
* @return mixed
*/
public function actionView($id)
{
return $this->render('view', [
'model' => $this->findModel($id),
]);
}
/**
* Creates a new Object model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new Object();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect( ['view', 'id' => $model->id]);
} else {
return $this->render('create', [
'model' => $model,
]);
129
}
}
/**
* Updates an existing Object model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
* @return mixed
*/
public function actionUpdate($id)
{
$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 Object model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @param integer $id
* @return mixed
*/
public function actionDelete($id)
{
130
$this->findModel($id)->delete();
return $this->redirect( ['index']);
}
/**
* Finds the Object model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return Object the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = Object::findOne($id)) !== null) {
return $model;
} else {
throw new NotFoundHttpException('The requested page does not exist.');
}
}
}
ReportController.php
<?php
namespace app\controllers;
use Yii;
use app\models\Settings;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
Источник: https://baza.diplomsite.ru/previewfile/1961