Esempio n. 1
0
 /**
  * action create
  * 
  * @param \Woehrl\WoehrlAkademie\Domain\Model\Kategorie $newKategorie
  * @return void
  */
 public function createAction(\Woehrl\WoehrlAkademie\Domain\Model\Kategorie $newKategorie)
 {
     $this->addFlashMessage('The object was created. Please be aware that this action is publicly accessible unless you implement an access check. See <a href="http://wiki.typo3.org/T3Doc/Extension_Builder/Using_the_Extension_Builder#1._Model_the_domain" target="_blank">Wiki</a>', '', \TYPO3\CMS\Core\Messaging\AbstractMessage::ERROR);
     $this->kategorieRepository->add($newKategorie);
     $this->redirect('list');
 }