Ejemplo n.º 1
0
 public function deleteAction()
 {
     $id = (int) $this->getParam('id');
     $record = ShortUrl::getRepository()->find($id);
     if ($record instanceof ShortUrl) {
         $record->delete();
     }
     $this->alert('<b>Record deleted.</b>', 'green');
     $this->redirectFromHere(array('action' => 'index', 'id' => NULL));
 }