Exemplo n.º 1
0
 public function ActionPresentsCardsCreate()
 {
     $model = new UserCardsModel();
     if (isset($_POST['card'])) {
         $model->setAttrs($_POST['card']);
         if ($_FILES['image']['name']) {
             $model->cardImage = File::save($_FILES['image'], "assets/images/cards");
         }
         $model->save();
         $this->redirect("/admin/presents");
     }
     $this->view("admin/presents/card/show", array("model" => "UserCardsModel"), false);
 }