Esempio n. 1
0
 public function deleteMultipleAction()
 {
     if ($this->getRequest()->isPost()) {
         $ids = $this->params()->fromPost('ids');
         $this->accountService->deleteIn($ids);
         return new JsonModel(array('success' => true, 'error' => array()));
     }
 }