summaryrefslogtreecommitdiff
path: root/app/Template/timetable_day
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/timetable_day')
-rw-r--r--app/Template/timetable_day/index.php45
-rw-r--r--app/Template/timetable_day/remove.php13
2 files changed, 0 insertions, 58 deletions
diff --git a/app/Template/timetable_day/index.php b/app/Template/timetable_day/index.php
deleted file mode 100644
index 386ceec2..00000000
--- a/app/Template/timetable_day/index.php
+++ /dev/null
@@ -1,45 +0,0 @@
-<div class="page-header">
- <h2><?= t('Day timetable') ?></h2>
-</div>
-
-<?php if (! empty($timetable)): ?>
-
-<table class="table-fixed table-stripped">
- <tr>
- <th><?= t('Start time') ?></th>
- <th><?= t('End time') ?></th>
- <th><?= t('Action') ?></th>
- </tr>
- <?php foreach ($timetable as $slot): ?>
- <tr>
- <td><?= $slot['start'] ?></td>
- <td><?= $slot['end'] ?></td>
- <td>
- <?= $this->url->link(t('Remove'), 'timetableday', 'confirm', array('user_id' => $user['id'], 'slot_id' => $slot['id'])) ?>
- </td>
- </tr>
- <?php endforeach ?>
-</table>
-
-<h3><?= t('Add new time slot') ?></h3>
-<?php endif ?>
-
-<form method="post" action="<?= $this->url->href('timetableday', 'save', array('user_id' => $user['id'])) ?>" autocomplete="off">
-
- <?= $this->form->hidden('user_id', $values) ?>
- <?= $this->form->csrf() ?>
-
- <?= $this->form->label(t('Start time'), 'start') ?>
- <?= $this->form->select('start', $this->dt->getDayHours(), $values, $errors) ?>
-
- <?= $this->form->label(t('End time'), 'end') ?>
- <?= $this->form->select('end', $this->dt->getDayHours(), $values, $errors) ?>
-
- <div class="form-actions">
- <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
- </div>
-</form>
-
-<p class="alert alert-info">
- <?= t('This timetable is used when the checkbox "all day" is checked for scheduled time off and overtime.') ?>
-</p> \ No newline at end of file
diff --git a/app/Template/timetable_day/remove.php b/app/Template/timetable_day/remove.php
deleted file mode 100644
index 1b33b266..00000000
--- a/app/Template/timetable_day/remove.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<div class="page-header">
- <h2><?= t('Remove time slot') ?></h2>
-</div>
-
-<div class="confirm">
- <p class="alert alert-info"><?= t('Do you really want to remove this time slot?') ?></p>
-
- <div class="form-actions">
- <?= $this->url->link(t('Yes'), 'timetableday', 'remove', array('user_id' => $user['id'], 'slot_id' => $slot_id), true, 'btn btn-red') ?>
- <?= t('or') ?>
- <?= $this->url->link(t('cancel'), 'timetableday', 'index', array('user_id' => $user['id'])) ?>
- </div>
-</div> \ No newline at end of file