| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 | <?phpnamespace backend\controllers;use common\models\Carousel;use common\models\CarouselItem;use Yii;use yii\data\ActiveDataProvider;use yii\filters\VerbFilter;use yii\web\Controller;use yii\web\NotFoundHttpException;/** * CarouselController implements the CRUD actions for Carousel model. */class CarouselController extends Controller{    public function behaviors()    {        return [            'verbs' => [                'class' => VerbFilter::className(),                'actions' => [                    'delete' => ['post']                ],            ],        ];    }    public function actions()    {        return [            'switcher' => [                'class' => 'backend\widgets\grid\SwitcherAction'            ]        ];    }    /**     * Lists all Carousel models.     * @return mixed     */    public function actionIndex()    {        $dataProvider = new ActiveDataProvider([            'query' => Carousel::find()        ]);        return $this->render('index', [            'dataProvider' => $dataProvider,        ]);    }    /**     * Creates a new Carousel model.     * If creation is successful, the browser will be redirected to the 'view' page.     * @return mixed     */    public function actionCreate()    {        $model = new Carousel();        $model->loadDefaultValues();        if ($model->load(Yii::$app->request->post()) && $model->save()) {            return $this->redirect(['update', 'id' => $model->id]);        } else {            return $this->render('create', [                'model' => $model,            ]);        }    }    /**     * Updates an existing Carousel 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);        $carouselItemsProvider = new ActiveDataProvider([            'query' => CarouselItem::find()->where(['carousel_id'=>$model->id])->orderBy('sort')        ]);        if ($model->load(Yii::$app->request->post()) && $model->save()) {            return $this->redirect(['index']);        } else {            return $this->render('update', [                'model' => $model,                'carouselItemsProvider'=>$carouselItemsProvider            ]);        }    }    /**     * Deletes an existing Carousel model.     * If deletion is successful, the browser will be redirected to the 'index' page.     * @param integer $id     * @return mixed     */    public function actionDelete($id)    {        $this->findModel($id)->delete();        return $this->redirect(['index']);    }    /**     * Finds the Carousel model based on its primary key value.     * If the model is not found, a 404 HTTP exception will be thrown.     * @param integer $id     * @return Carousel the loaded model     * @throws NotFoundHttpException if the model cannot be found     */    public function findModel($id)    {        if (($model = Carousel::findOne($id)) !== null) {            return $model;        } else {            throw new NotFoundHttpException('The requested page does not exist.');        }    }}
 |