public function removeAction()
 {
     if (!$this->isXmlHttpRequest()) {
         throw new \Exception('Неверный тип запроса!');
     }
     if (!is_null($this->request->getPost('id'))) {
         $id = (int) $this->request->getPost('id');
         $filesModel = new Files();
         $filesModel->removeFile($id);
     } else {
         throw new \Exception('Неверный тип запроса!');
     }
     echo json_encode(array('success' => 1));
     exit;
 }