function postForm() { $kursus = new VIH_Model_LangtKursus($this->context->name()); if ($this->body("opret_rater")) { if (!$kursus->opretRater((int) $this->body("antal"), $this->body("foerste_rate_dato"))) { throw new Exception('Kunne ikke oprette rater'); } } elseif ($this->body("opdater_rater")) { if (!$kursus->updateRater($this->body("rate"))) { throw new Exception('Kunne ikke opdatere rater'); } } return new k_SeeOther($this->url()); }