| Current Path : /var/www/html/dosm/backend/modules/contentSlider/controllers/ |
| Current File : /var/www/html/dosm/backend/modules/contentSlider/controllers/ContentSliderBackgroundController.php |
<?php
namespace backend\modules\contentSlider\controllers;
use Yii;
use backend\modules\contentSlider\models\ContentSliderBackground;
use backend\modules\contentSlider\models\ContentSliderBackgroundSearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii\web\UploadedFile;
/**
* ContentSliderBackgroundController implements the CRUD actions for ContentSliderBackground model.
*/
class ContentSliderBackgroundController extends Controller {
/**
* {@inheritdoc}
*/
public function behaviors() {
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* Lists all ContentSliderBackground models.
* @return mixed
*/
public function actionIndex() {
$searchModel = new ContentSliderBackgroundSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
/**
* Displays a single ContentSliderBackground 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 ContentSliderBackground model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate() {
$model = new ContentSliderBackground();
$model->scenario = 'create';
if ($model->load(Yii::$app->request->post())) {
if (!empty($model->background_portal))
$model->background_portal = json_encode($model->background_portal);
$model->background_url = UploadedFile::getInstance($model, 'background_url');
if (!empty($model->background_url)) {
$background_url = 'background_' . date("YmdHis") . '.' . $model->background_url->extension;
if ($model->background_url->saveAs('../uploads/' . $background_url))
$model->background_url = $background_url;
}
if ($model->save())
return $this->redirect(['index']);
}
return $this->render('create', ['model' => $model,]);
}
/**
* Updates an existing ContentSliderBackground 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);
$original_background_url = $model->background_url;
if (!empty($model->background_portal))
$model->background_portal = json_decode($model->background_portal);
if ($model->load(Yii::$app->request->post())) {
if (!empty($model->background_portal))
$model->background_portal = json_encode($model->background_portal);
$model->background_url = UploadedFile::getInstance($model, 'background_url');
if (!empty($model->background_url)) {
$background_url = 'background_' . date("YmdHis") . '.' . $model->background_url->extension;
if ($model->background_url->saveAs('../uploads/' . $background_url))
$model->background_url = $background_url;
} else
$model->background_url = $original_background_url;
if ($model->save())
return $this->redirect(['index']);
}
return $this->render('update', ['model' => $model,]);
}
/**
* Deletes an existing ContentSliderBackground 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 ContentSliderBackground model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return ContentSliderBackground the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id) {
if (($model = ContentSliderBackground::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
}