/**
  * Creates a new CmsPageContent model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  *
  * @return mixed @menuLabel __HIDDEN__
  *         @menuIcon <span class="glyphicon glyphicon-list-alt"></span>
  *         @functionalRight cmsBackendWrite
  */
 public function actionCreate()
 {
     $model = new CmsPageContent();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }