blob: 64df0487067f121ceba70b2ef4c63df6a651508e [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001<?php
2require_once("core.php");
3security::checkType(security::ADMIN);
4
5if (!security::checkParams("POST", [
6 ["id", security::PARAM_NEMPTY],
7 ["day", security::PARAM_ISSET],
8 ["status", security::PARAM_ISSET]
9])) {
10 security::go("workers.php?msg=empty");
11}
12
13$id = $_POST["id"];
14$date = new DateTime($_POST["day"]);
15$day = $date->getTimestamp();
16$status = $_POST["status"];
17
18if (workers::addWorkHistoryItem($id, $day, $status)) security::go("workers.php?openWorkerHistory=".(int)$id);
19else security::go("workers.php?msg=unexpected");