| Current Path : /var/www/html/drsa/backend/modules/frontendColorTheme/controllers/ |
| Current File : /var/www/html/drsa/backend/modules/frontendColorTheme/controllers/FrontendColorThemeController.php |
<?php
namespace backend\modules\frontendColorTheme\controllers;
use Yii;
use backend\modules\frontendColorTheme\models\FrontendColorTheme;
use backend\modules\frontendColorTheme\models\FrontendColorThemeSearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii\helpers\Url;
/**
* FrontendColorThemeController implements the CRUD actions for FrontendColorTheme model.
*/
class FrontendColorThemeController extends Controller
{
/**
* {@inheritdoc}
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* Lists all FrontendColorTheme models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new FrontendColorThemeSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
/**
* Displays a single FrontendColorTheme model.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionView($id)
{
return $this->render('view', [
'model' => $this->findModel($id),
]);
}
/**
* Creates a new FrontendColorTheme model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new FrontendColorTheme();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
$this->getView()->registerJs("swal.fire({
title:'Saved',
icon: 'success',
text: 'Data has been saved successfully',
}).then(function(result){
window.location = '" . Url::toRoute(['index']) . "';
});");
}
return $this->render('create', [
'model' => $model,
]);
}
/**
* Updates an existing FrontendColorTheme 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()) {
$this->getView()->registerJs("swal.fire({
title:'Saved',
icon: 'success',
text: 'Data has been saved successfully',
}).then(function(result){
window.location = '" . Url::toRoute(['index']) . "';
});");
}
return $this->render('update', [
'model' => $model,
]);
}
/**
* Deletes an existing FrontendColorTheme 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 = $_POST['id'];
$status = 'failed';
if ($this->findModel($id)->delete())
$status = 'success';
return $status;
}
/**
* Finds the FrontendColorTheme model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return FrontendColorTheme the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = FrontendColorTheme::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
}