Ejemplo n.º 1
0
 /**
  * @secured
  */
 public function handleDeleteTag($tagId)
 {
     try {
         $this->tags->delete($this->tags->findOneBy(['id' => $tagId]));
         $this->flashMessage('Tag byl úspěšně smazán.', 'success');
     } catch (\Exception $exc) {
         $this->flashMessage($exc->getMessage(), 'danger');
     }
     $this->redirect('this');
 }