示例#1
0
 /**
  * Creates a new MenuItems model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate($menu_id)
 {
     $model = new MenuItems();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model, 'menu_id' => $menu_id]);
     }
 }
 public function actionAddMenuItem()
 {
     $item = \Yii::$app->request->post('item');
     $menuItem = new MenuItems();
     $menuItem->attributes = $item;
     $menuItem->enabled = true;
     if ($menuItem->validate()) {
         if ($menuItem->save(false)) {
             return $menuItem;
         } else {
             throw new Exception("Database exception");
         }
     } else {
         $ex = new ValidationException();
         $ex->setData($menuItem->errors);
         throw $ex;
     }
 }