Project import generated by Copybara.
GitOrigin-RevId: 63746295f1a5ab5a619056791995793d65529e62
diff --git a/src/workerschedule.php b/src/workerschedule.php
new file mode 100644
index 0000000..9ba43e6
--- /dev/null
+++ b/src/workerschedule.php
@@ -0,0 +1,115 @@
+<?php
+require_once("core.php");
+security::checkType(security::WORKER);
+security::checkWorkerUIEnabled();
+
+$isAdmin = security::isAllowed(security::ADMIN);
+
+$id = $_GET["id"] ?? people::userData("id");
+$id = (int)$id;
+
+if (!$isAdmin && people::userData("id") != $id) {
+ security::notFound();
+}
+
+$p = people::get($id);
+
+if ($p === false) {
+ security::go((security::isAdminView() ? "workers.php" : "workerhome.php"));
+}
+
+if (security::isAdminView()) $mdHeaderRowBefore = visual::backBtn("workers.php");
+
+$plaintext = isset($_GET["plaintext"]) && $_GET["plaintext"] == "1";
+$companies = companies::getAll();
+?>
+<!DOCTYPE html>
+<html>
+<head>
+ <title><?php echo $conf["appName"]; ?></title>
+ <?php visual::includeHead(); ?>
+ <link rel="stylesheet" href="css/dashboard.css">
+ <link rel="stylesheet" href="css/schedule.css">
+</head>
+<?php visual::printBodyTag(); ?>
+ <div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--fixed-drawer">
+ <?php visual::includeNav(); ?>
+ <main class="mdl-layout__content">
+ <div class="page-content">
+ <div class="main mdl-shadow--4dp">
+ <div class="actions">
+ <?php
+ if (!security::isAdminView()) {
+ ?>
+ <a href="workercalendar.php" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect"><i class="material-icons">today</i> Calendario laboral</a>
+ <?php
+ }
+ ?>
+ <a href="userschedule.php?id=<?=(int)$id?>" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect"><i class="material-icons">timelapse</i> <?=(security::isAdminView() ? "Administrar los horarios" : "Todos los horarios")?></a>
+ </div>
+
+ <h2>Horario actual<?=(security::isAdminView() ? " de “".security::htmlsafe($p["name"])."”" : "")?></h2>
+
+ <?php
+ $schedules = schedules::getCurrent($id);
+
+ if (!count($schedules)) {
+ echo "<p>Actualmente no tienes asignado ningún horario.</p>";
+ } else {
+ foreach ($schedules as $i => $schedule) {
+ $worker = workers::get($schedule["worker"]);
+
+ if (security::isAdminView()) {
+ ?>
+ <a href="schedule.php?id=<?=(int)$schedule["id"]?>" class="mdl-button mdl-js-button mdl-button--icon mdl-js-ripple-effect" style="float: right;"><i class="material-icons">edit</i><span class="mdl-ripple"></span></a>
+ <?php
+ }
+ ?>
+ <p>
+ <b>Empresa:</b> <?=$companies[$worker["company"]]?><br>
+ <b>Validez:</b> del <?=security::htmlsafe(date("d/m/Y", $schedule["begins"]))?> al <?=security::htmlsafe(date("d/m/Y", $schedule["ends"]))?>
+ </p>
+ <?php
+ if ($plaintext) {
+ $flag = false;
+ foreach ($schedule["days"] as $typeday) {
+ schedulesView::renderPlainSchedule($typeday, false, null, null, $flag);
+ }
+
+ if (!$flag) {
+ echo "<p>Tu horario todavía no está configurado.</p>";
+ }
+ } else {
+ foreach (calendars::$types as $tdid => $type) {
+ if ($tdid == calendars::TYPE_FESTIU) continue;
+
+ $tdisset = isset($schedule["days"][$tdid]);
+
+ echo "<h4>".security::htmlsafe(calendars::$types[$tdid])."</h4>";
+
+ if ($tdisset) {
+ schedulesView::renderSchedule($schedule["days"][$tdid], false, null, null);
+ } else {
+ echo "<p>Todavía no hay configurado ningún horario en días del tipo \"".security::htmlsafe(calendars::$types[$tdid])."\".</p>";
+ }
+ }
+ }
+
+ if ($i + 1 != count($schedules)) echo "<hr>";
+ }
+ }
+ ?>
+
+ <?php visual::printDebug("schedules::getCurrent()", $schedules); ?>
+ </div>
+ </div>
+ </main>
+ </div>
+
+ <?php
+ visual::smartSnackbar([
+ ["unexpected", "Ha ocurrido un error inesperado. Inténtelo de nuevo en unos segundos."]
+ ]);
+ ?>
+</body>
+</html>