requirePermissions('PM_DELETE_PROCESS_CASES', 'PM_FACTORY'); $resp = new stdClass(); try { $uids = explode(',', $_POST['PRO_UIDS']); $process = new Process(); foreach ($uids as $uid) { $process->deleteProcessCases($uid); } $resp->status = true; $resp->msg = G::LoadTranslation('ID_ALL_RECORDS_DELETED_SUCESSFULLY'); echo G::json_encode($resp); } catch (Exception $e) { $resp->status = false; $resp->msg = $e->getMessage(); $resp->trace = $e->getTraceAsString(); echo G::json_encode($resp); }