예제 #1
0
 public function doUlozitUdaje()
 {
     $pars = ['orion_login' => $this->user->orion_login, 'nickname' => trim($this->getParam("nickname", INPUT_POST)), 'is_student' => !empty($this->getParam("is_student", INPUT_POST))];
     if (Tables\User::update($this->pdo, $pars)) {
         $this->message->success("Vaše údaje byly zpracovány a uloženy");
     } else {
         $this->message->danger("Při ukládání vašich údajů nastala chyba.");
     }
     $this->redirectPars("uzivatel", $this->getDefaultAction());
 }