diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
commit | eeac2329baab1fdae7cbf6c707ed2ffd8beb4c1b (patch) | |
tree | 511c2fe47f8fbb1ea90e59e7a7a7f5e3530aa9ed /app/Template/notification | |
parent | 65e9e5d1bed9f88ecfd43eb2c1e780a7c22c151f (diff) |
Helpers refactoring
Diffstat (limited to 'app/Template/notification')
-rw-r--r-- | app/Template/notification/comment_creation.php | 2 | ||||
-rw-r--r-- | app/Template/notification/comment_update.php | 2 | ||||
-rw-r--r-- | app/Template/notification/footer.php | 2 | ||||
-rw-r--r-- | app/Template/notification/task_assignee_change.php | 2 | ||||
-rw-r--r-- | app/Template/notification/task_creation.php | 2 | ||||
-rw-r--r-- | app/Template/notification/task_due.php | 2 | ||||
-rw-r--r-- | app/Template/notification/task_update.php | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/app/Template/notification/comment_creation.php b/app/Template/notification/comment_creation.php index b28e261a..747c4f43 100644 --- a/app/Template/notification/comment_creation.php +++ b/app/Template/notification/comment_creation.php @@ -2,6 +2,6 @@ <h3><?= t('New comment posted by %s', $comment['name'] ?: $comment['username']) ?></h3> -<?= $this->markdown($comment['comment']) ?> +<?= $this->text->markdown($comment['comment']) ?> <?= $this->render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Template/notification/comment_update.php b/app/Template/notification/comment_update.php index 88154f0b..a15e5d6d 100644 --- a/app/Template/notification/comment_update.php +++ b/app/Template/notification/comment_update.php @@ -2,6 +2,6 @@ <h3><?= t('Comment updated') ?></h3> -<?= $this->markdown($comment['comment']) ?> +<?= $this->text->markdown($comment['comment']) ?> <?= $this->render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Template/notification/footer.php b/app/Template/notification/footer.php index 4de1487e..7041c43b 100644 --- a/app/Template/notification/footer.php +++ b/app/Template/notification/footer.php @@ -2,5 +2,5 @@ Kanboard <?php if (isset($application_url) && ! empty($application_url)): ?> - - <a href="<?= $application_url.$this->u('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"><?= t('view the task on Kanboard') ?></a>. + - <a href="<?= $application_url.$this->url->href('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"><?= t('view the task on Kanboard') ?></a>. <?php endif ?> diff --git a/app/Template/notification/task_assignee_change.php b/app/Template/notification/task_assignee_change.php index faab92f3..c9729ac9 100644 --- a/app/Template/notification/task_assignee_change.php +++ b/app/Template/notification/task_assignee_change.php @@ -14,7 +14,7 @@ <?php if (! empty($task['description'])): ?> <h2><?= t('Description') ?></h2> - <?= $this->markdown($task['description']) ?: t('There is no description.') ?> + <?= $this->text->markdown($task['description']) ?: t('There is no description.') ?> <?php endif ?> <?= $this->render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Template/notification/task_creation.php b/app/Template/notification/task_creation.php index dfd3e591..0905d3f5 100644 --- a/app/Template/notification/task_creation.php +++ b/app/Template/notification/task_creation.php @@ -37,7 +37,7 @@ <?php if (! empty($task['description'])): ?> <h2><?= t('Description') ?></h2> - <?= $this->markdown($task['description']) ?> + <?= $this->text->markdown($task['description']) ?> <?php endif ?> <?= $this->render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Template/notification/task_due.php b/app/Template/notification/task_due.php index 72c8de1b..7482424a 100644 --- a/app/Template/notification/task_due.php +++ b/app/Template/notification/task_due.php @@ -5,7 +5,7 @@ <li> (<strong>#<?= $task['id'] ?></strong>) <?php if ($application_url): ?> - <a href="<?= $application_url.$this->u('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"><?= $this->e($task['title']) ?></a> + <a href="<?= $application_url.$this->url->href('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"><?= $this->e($task['title']) ?></a> <?php else: ?> <?= $this->e($task['title']) ?> <?php endif ?> diff --git a/app/Template/notification/task_update.php b/app/Template/notification/task_update.php index 71e949dd..ffea49cd 100644 --- a/app/Template/notification/task_update.php +++ b/app/Template/notification/task_update.php @@ -37,7 +37,7 @@ <?php if (! empty($task['description'])): ?> <h2><?= t('Description') ?></h2> - <?= $this->markdown($task['description']) ?: t('There is no description.') ?> + <?= $this->text->markdown($task['description']) ?: t('There is no description.') ?> <?php endif ?> <?= $this->render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file |