SlideController.php 6.42 KB
<?php
    /**
     * Created by PhpStorm.
     * User: stes
     * Date: 04.04.18
     * Time: 15:56
     */
    
    namespace backend\controllers;
    
    use artbox\core\admin\actions\Create;
    use artbox\core\admin\actions\Delete;
    use artbox\core\admin\actions\Index;
    use artbox\core\admin\actions\Update;
    use artbox\core\admin\interfaces\ControllerInterface;
    use artbox\core\admin\widgets\Form;
    use common\models\slider\Slide;
    use yii\filters\AccessControl;
    use yii\filters\VerbFilter;
    use yii\web\Controller;
    use yii\web\NotFoundHttpException;
    use yii\web\View;

    class SlideController extends Controller implements ControllerInterface
    {
        public function behaviors()
        {
            return [
                'verbs'  => [
                    'class'   => VerbFilter::className(),
                    'actions' => [
                        'delete' => [ 'POST' ],
                    ],
                ],
                'access' => [
                    'class' => AccessControl::className(),
                    'rules' => [
                        [
                            'allow' => true,
                            'roles' => [ '@' ],
                        ],
                    ],
                ],
            ];
        }
        public function actions()
        {
            return [
                'index' => [
                    'class' => Index::className(),
                    'columns' => [
                        'title' => [
                            'type' => Index::ACTION_COL
                        ],
                        'sort'       => [
                            'type' => Index::POSITION_COL,
                        ],
                        'status' => [
                            'type' => Index::STATUS_COL
                        ],
                        'link' => [
                            'type' => Index::STRING_COL
                        ],
                    ],
                    'model' => Slide::className(),
                    'hasLanguage'      => true,
                    'enableMassDelete' => true,
                    'modelPrimaryKey'  => 'id',
                ],
                'create' => array_merge([ 'class' => Create::className() ], self::fieldsConfig()),
                'update' => array_merge([ 'class' => Update::className() ], self::fieldsConfig()),
                'view'   => [
                    'class'          => View::className(),
                    'model'          => Slide::className(),
                    'hasAlias'       => false,
                    'hasGallery'     => false,
                    'languageFields' => [
                        [
                            'name' => 'title',
                            'type' => Form::STRING,
                        ],
                        [
                            'name' => 'description',
                            'type' => Form::TEXTAREA,
                        ],
                        [
                            'name' => 'link',
                            'type' => Form::STRING,
                        ],
                        [
                            'name' => 'image_id',
                            'type' => Form::IMAGE,
                        ]
                        
                    ],
                    'fields'         => [
                        [
                            'name' => 'status',
                            'type' => Form::BOOL,
                        ],
                        [
                            'name' => 'sort',
                            'type' => Form::NUMBER,
                        ],
                        [
                            'name' => 'background_id',
                            'type' => Form::IMAGE,
                        ]
                    ],
                ],
                'delete' => [
                    'class' => Delete::className(),
                ],
            ];
        }
    
        public function findModel($id)
        {
            $model = Slide::find()
                             ->with('languages')
                             ->where([ 'id' => $id ])
                             ->one();
            if ($model !== null) {
                return $model;
            } else {
                throw new NotFoundHttpException('The requested page does not exist.');
            }
        }
    
        public function newModel()
        {
            return new Slide();
        }
    
        public function deleteModel($id)
        {
            $page = Slide::find()
                            ->with('languages')
                            ->where(
                                [
                                    'id' => $id,
                                ]
                            )
                            ->one();
            $langs = call_user_func(
                [
                    $page,
                    'getVariationModels',
                ]
            );
            foreach ($langs as $lang) {
                if ($lang->alias !== null) {
                    $lang->alias->delete();
                }
            }
        
            return $page->delete();
        }
    
        protected static function fieldsConfig()
        {
            return [
                'model'          => Slide::className(),
                'hasAlias'       => false,
                'languageFields' => [
                    [
                        'name' => 'image_id',
                        'type' => Form::IMAGE,
                    ],
                    [
                        'name' => 'title',
                        'type' => Form::STRING,
                    ],
                    [
                        'name' => 'description',
                        'type' => Form::TEXTAREA,
                    ],
                    [
                        'name' => 'link',
                        'type' => Form::STRING,
                    ],

                ],
                'fields'         => [
                    [
                        'name' => 'background_id',
                        'type' => Form::IMAGE,
                    ],
                    [
                        'name' => 'status',
                        'type' => Form::BOOL,
                    ],
                    [
                        'name' => 'sort',
                        'type' => Form::NUMBER,
                    ],
                ],
            ];
        }
    }