/**
  * Creates a new Category model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Category();
     $parentList = Category::getParentListArray();
     $viewArray = Category::getPageViewArray();
     $positionArray = Category::getCategoryPositionArray();
     $statusArray = Category::getCategoryStatusArray();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model, 'parentList' => $parentList, 'viewArray' => $viewArray, 'positionArray' => $positionArray, 'statusArray' => $statusArray]);
     }
 }