Esempio n. 1
0
 /**
  * @operationName("Remove Livenews")
  * @operationDescription("Remove Livenews")
  */
 public function newsAction()
 {
     if (!$this->request->isDelete()) {
         return $this->showErrorMessageAsJson(405, 'ERR_REQUEST_METHOD_NOT_ALLOW');
     }
     $id = $this->dispatcher->getParam('id');
     $news = new Models\NewsManager();
     try {
         $news->removeNews($id);
     } catch (\Exception $e) {
         return $this->showExceptionAsJson($e, $news->getMessages());
     }
     return $this->response->setJsonContent($news);
 }