Beispiel #1
0
 public function actionSave1()
 {
     if (!empty($this->app->request->post->id)) {
         $item = Page::findByPK($this->app->request->post->id);
     } else {
         $item = new Page();
     }
     $item->fill($this->app->request->post);
     $item->save();
     $this->redirect('/admin/Rubrics/?id=' . $item->__rubric_id);
 }