summaryrefslogtreecommitdiff
path: root/app/Template/board/recurrence.php
diff options
context:
space:
mode:
authorDavid-Norris <Dave@Rachels-MacBook-Pro.local>2015-05-03 00:12:28 -0400
committerDavid-Norris <Dave@Rachels-MacBook-Pro.local>2015-05-03 00:12:28 -0400
commita314bbb489eff2d419481ad001805ce13edb5352 (patch)
tree43961ee5b42857f905eb8042af5090d0a4413221 /app/Template/board/recurrence.php
parentfa5aaa60934223f74c9b9c32e7599f53c72a81fd (diff)
Initial Recurring Tasks Commit
Initial Recurring Tasks Commit No Locales Updated.
Diffstat (limited to 'app/Template/board/recurrence.php')
-rw-r--r--app/Template/board/recurrence.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/Template/board/recurrence.php b/app/Template/board/recurrence.php
new file mode 100644
index 00000000..1b71bc34
--- /dev/null
+++ b/app/Template/board/recurrence.php
@@ -0,0 +1,18 @@
+<section class="tooltip-large">
+<?php if ($task['recurrence_status'] == \Model\Task::RECURE_STATUS_PENDING): ?>
+ <?= t('Recurrent task is scheduled to generate') ?><br/>
+<?php endif ?>
+<?php if ($task['recurrence_status'] == \Model\Task::RECURE_STATUS_PROCESSED): ?>
+ <?= t('Recurrent task has been generated') ?><br/>
+<?php endif ?>
+ <?= t('Trigger to generate recurrent task: %s', $recurrence_trigger_list[$task['recurrence_trigger']]) ?><br/>
+ <?= t('Factor to calculate new due date: %s', $task['recurrence_factor']) ?><br/>
+ <?= t('Timeframe to calculate new due date: %s', $recurrence_timeframe_list[$task['recurrence_timeframe']]) ?><br/>
+ <?= t('Base date to calculate new due date: %s', $recurrence_basedate_list[$task['recurrence_basedate']]) ?><br/>
+<?php if ($task['recurrence_parent']): ?>
+ <?= t('Recurrent task created by: %s', $task['recurrence_parent']) ?><br/>
+<?php endif ?>
+<?php if ($task['recurrence_child']): ?>
+ <?= t('Created recurrent task: %s', $task['recurrence_child']) ?><br/>
+<?php endif ?>
+</section>