diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-20 18:24:15 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-20 18:24:15 -0400 |
commit | e6f547abcfe684658a7498391db72d13b6aa7d9a (patch) | |
tree | 75b709c12fb03e11d7cb85558558f89f19abb284 /app/Template/timetable_week | |
parent | 2021dccc5a444f60c5ba1673d94b39999912cd26 (diff) |
Move timetable to a plugin
Plugin repository: https://github.com/kanboard/plugin-timetable
Diffstat (limited to 'app/Template/timetable_week')
-rw-r--r-- | app/Template/timetable_week/index.php | 46 | ||||
-rw-r--r-- | app/Template/timetable_week/remove.php | 13 |
2 files changed, 0 insertions, 59 deletions
diff --git a/app/Template/timetable_week/index.php b/app/Template/timetable_week/index.php deleted file mode 100644 index d58c6cfb..00000000 --- a/app/Template/timetable_week/index.php +++ /dev/null @@ -1,46 +0,0 @@ -<div class="page-header"> - <h2><?= t('Week timetable') ?></h2> -</div> - -<?php if (! empty($timetable)): ?> - -<table class="table-fixed table-stripped"> - <tr> - <th><?= t('Day') ?></th> - <th><?= t('Start time') ?></th> - <th><?= t('End time') ?></th> - <th><?= t('Action') ?></th> - </tr> - <?php foreach ($timetable as $slot): ?> - <tr> - <td><?= $this->dt->getWeekDay($slot['day']) ?></td> - <td><?= $slot['start'] ?></td> - <td><?= $slot['end'] ?></td> - <td> - <?= $this->url->link(t('Remove'), 'timetableweek', '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('timetableweek', 'save', array('user_id' => $user['id'])) ?>" autocomplete="off"> - - <?= $this->form->hidden('user_id', $values) ?> - <?= $this->form->csrf() ?> - - <?= $this->form->label(t('Day'), 'day') ?> - <?= $this->form->select('day', $this->dt->getWeekDays(), $values, $errors) ?> - - <?= $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>
\ No newline at end of file diff --git a/app/Template/timetable_week/remove.php b/app/Template/timetable_week/remove.php deleted file mode 100644 index f5a10199..00000000 --- a/app/Template/timetable_week/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'), 'timetableweek', 'remove', array('user_id' => $user['id'], 'slot_id' => $slot_id), true, 'btn btn-red') ?> - <?= t('or') ?> - <?= $this->url->link(t('cancel'), 'timetableweek', 'index', array('user_id' => $user['id'])) ?> - </div> -</div>
\ No newline at end of file |