From 5e2e0272ed78e3b729d5673da3e957ce68a30fa2 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 8 Oct 2016 09:53:46 -0400 Subject: Send absolute links in email notifications --- app/Template/notification/footer.php | 4 ++-- app/Template/notification/task_internal_link_create_update.php | 2 +- app/Template/notification/task_internal_link_delete.php | 2 +- app/Template/notification/task_open.php | 2 +- app/Template/notification/task_overdue.php | 8 ++++---- 5 files changed, 9 insertions(+), 9 deletions(-) (limited to 'app/Template/notification') diff --git a/app/Template/notification/footer.php b/app/Template/notification/footer.php index 6ac260cb..da437eea 100644 --- a/app/Template/notification/footer.php +++ b/app/Template/notification/footer.php @@ -2,6 +2,6 @@ Kanboard - - - - + - url->absoluteLink(t('view the task on Kanboard'), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> + - url->absoluteLink(t('view the board on Kanboard'), 'BoardViewController', 'show', array('project_id' => $task['project_id'])) ?> diff --git a/app/Template/notification/task_internal_link_create_update.php b/app/Template/notification/task_internal_link_create_update.php index 73cad84d..b66a1531 100644 --- a/app/Template/notification/task_internal_link_create_update.php +++ b/app/Template/notification/task_internal_link_create_update.php @@ -3,7 +3,7 @@

url->link(t('#%d', $task_link['opposite_task_id']), 'TaskViewController', 'show', array('task_id' => $task_link['opposite_task_id'])), + $this->url->absoluteLink(t('#%d', $task_link['opposite_task_id']), 'TaskViewController', 'show', array('task_id' => $task_link['opposite_task_id'])), $this->text->e($task_link['label']) ) ?>

diff --git a/app/Template/notification/task_internal_link_delete.php b/app/Template/notification/task_internal_link_delete.php index bb54e0a7..d556fb20 100644 --- a/app/Template/notification/task_internal_link_delete.php +++ b/app/Template/notification/task_internal_link_delete.php @@ -4,7 +4,7 @@ text->e($task_link['label']), - $this->url->link(t('#%d', $task_link['opposite_task_id']), 'TaskViewController', 'show', array('task_id' => $task_link['opposite_task_id'])) + $this->url->absoluteLink(t('#%d', $task_link['opposite_task_id']), 'TaskViewController', 'show', array('task_id' => $task_link['opposite_task_id'])) ) ?>

diff --git a/app/Template/notification/task_open.php b/app/Template/notification/task_open.php index 6eb4ec08..2c85e9f7 100644 --- a/app/Template/notification/task_open.php +++ b/app/Template/notification/task_open.php @@ -2,4 +2,4 @@

-render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?> \ No newline at end of file +render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?> diff --git a/app/Template/notification/task_overdue.php b/app/Template/notification/task_overdue.php index 406e41f7..01ad0a01 100644 --- a/app/Template/notification/task_overdue.php +++ b/app/Template/notification/task_overdue.php @@ -13,16 +13,16 @@ # - - text->e($task['title']) ?> + + url->absoluteLink($this->text->e($task['title']), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> text->e($task['title']) ?> dt->date($task['date_due']) ?> - + text->e($task['project_name']) ?> - + text->e($task['assignee_name'] ?: $task['assignee_username']) ?> -- cgit v1.2.3