Esempio n. 1
0
 public function deleteAction()
 {
     if ($this->_request->getParam("id")) {
         $id = $this->_request->getParam("id");
         $comment_model = new Application_Model_Comment();
         $comment_model->deleteComment($id);
         exit;
     }
 }