Copybara bot | be50d49 | 2023-11-30 00:16:42 +0100 | [diff] [blame] | 1 | <?php |
| 2 | require_once("core.php"); |
| 3 | security::checkType(security::ADMIN); |
| 4 | |
| 5 | if (!security::checkParams("POST", [ |
| 6 | ["id", security::PARAM_NEMPTY] |
| 7 | ])) { |
| 8 | security::go("workers.php?msg=empty"); |
| 9 | } |
| 10 | |
| 11 | $id = $_POST["id"]; |
| 12 | |
| 13 | $item = workers::getWorkHistoryItem($id); |
| 14 | if ($item === false) return false; |
| 15 | |
| 16 | if (workers::deleteWorkHistoryItem($id)) security::go("workers.php?openWorkerHistory=".(int)$item["worker"]); |
| 17 | else security::go("workers.php?msg=unexpected"); |