summaryrefslogtreecommitdiff
path: root/app/Template/notification/task_update.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-06-14 11:50:31 -0400
committerFrederic Guillot <fred@kanboard.net>2015-06-14 11:50:31 -0400
commit9b399951f430b26379a2bf8b13ace99290227e61 (patch)
tree4dd694985dc9f27782ad365d376dc5a37f1e987e /app/Template/notification/task_update.php
parenta785810f2d11ad14ab3497a51ca10a6780b758ad (diff)
Improve activity stream/notification for task update events and add new notification for swimlane change
Diffstat (limited to 'app/Template/notification/task_update.php')
-rw-r--r--app/Template/notification/task_update.php63
1 files changed, 1 insertions, 62 deletions
diff --git a/app/Template/notification/task_update.php b/app/Template/notification/task_update.php
index 0352788b..54f5c6d1 100644
--- a/app/Template/notification/task_update.php
+++ b/app/Template/notification/task_update.php
@@ -1,65 +1,4 @@
<h2><?= $this->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
-<?= t('The task have been updated.') ?>
-
-<?php if (! empty($changes)): ?>
- <h2><?= t('List of changes') ?></h2>
- <ul>
- <?php
-
- foreach ($changes as $field => $value) {
-
- switch ($field) {
- case 'title':
- echo '<li>'.t('New title: %s', $task['title']).'</li>';
- break;
- case 'owner_id':
- if (empty($task['owner_id'])) {
- echo '<li>'.t('The task is not assigned anymore').'</li>';
- }
- else {
- echo '<li>'.t('New assignee: %s', $task['assignee_name'] ?: $task['assignee_username']).'</li>';
- }
- break;
- case 'category_id':
- if (empty($task['category_id'])) {
- echo '<li>'.t('There is no category now').'</li>';
- }
- else {
- echo '<li>'.t('New category: %s', $task['category_name']).'</li>';
- }
- break;
- case 'color_id':
- echo '<li>'.t('New color: %s', $this->text->in($task['color_id'], $colors_list)).'</li>';
- break;
- case 'score':
- echo '<li>'.t('New complexity: %d', $task['score']).'</li>';
- break;
- case 'date_due':
- if (empty($task['date_due'])) {
- echo '<li>'.t('The due date have been removed').'</li>';
- }
- else {
- echo '<li>'.dt('New due date: %B %e, %Y', $task['date_due']).'</li>';
- }
- break;
- case 'description':
- if (empty($task['description'])) {
- echo '<li>'.t('There is no description anymore').'</li>';
- }
- break;
- default:
- echo '<li>'.t('The field "%s" have been updated', $field).'</li>';
- }
- }
-
- ?>
- </ul>
-
- <?php if (! empty($changes['description'])): ?>
- <h3><?= t('New description') ?></h3>
- <?= $this->text->markdown($task['description']) ?>
- <?php endif ?>
-<?php endif ?>
-
+<?= $this->render('task/changes', array('changes' => $changes, 'task' => $task)) ?>
<?= $this->render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?> \ No newline at end of file