diff options
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/board/task_footer.php | 4 | ||||
-rw-r--r-- | app/Template/listing/show.php | 2 | ||||
-rw-r--r-- | app/Template/search/results.php | 2 | ||||
-rw-r--r-- | app/Template/task/details.php | 2 | ||||
-rw-r--r-- | app/Template/task/recurring_info.php | 4 | ||||
-rw-r--r-- | app/Template/task_modification/edit_recurrence.php | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/app/Template/board/task_footer.php b/app/Template/board/task_footer.php index 0fb5ea8d..3583ee1a 100644 --- a/app/Template/board/task_footer.php +++ b/app/Template/board/task_footer.php @@ -26,11 +26,11 @@ </span> <?php endif ?> - <?php if ($task['recurrence_status'] == \Model\Task::RECURRING_STATUS_PENDING): ?> + <?php if ($task['recurrence_status'] == \Kanboard\Model\Task::RECURRING_STATUS_PENDING): ?> <span title="<?= t('Recurrence') ?>" class="tooltip" data-href="<?= $this->url->href('board', 'recurrence', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"><i class="fa fa-refresh fa-rotate-90"></i></span> <?php endif ?> - <?php if ($task['recurrence_status'] == \Model\Task::RECURRING_STATUS_PROCESSED): ?> + <?php if ($task['recurrence_status'] == \Kanboard\Model\Task::RECURRING_STATUS_PROCESSED): ?> <span title="<?= t('Recurrence') ?>" class="tooltip" data-href="<?= $this->url->href('board', 'recurrence', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"><i class="fa fa-refresh fa-rotate-90 fa-inverse"></i></span> <?php endif ?> diff --git a/app/Template/listing/show.php b/app/Template/listing/show.php index fc8a607b..aa17b228 100644 --- a/app/Template/listing/show.php +++ b/app/Template/listing/show.php @@ -46,7 +46,7 @@ <?= dt('%B %e, %Y', $task['date_due']) ?> </td> <td> - <?php if ($task['is_active'] == \Model\Task::STATUS_OPEN): ?> + <?php if ($task['is_active'] == \Kanboard\Model\Task::STATUS_OPEN): ?> <?= t('Open') ?> <?php else: ?> <?= t('Closed') ?> diff --git a/app/Template/search/results.php b/app/Template/search/results.php index 04cb6a19..88eed87c 100644 --- a/app/Template/search/results.php +++ b/app/Template/search/results.php @@ -41,7 +41,7 @@ <?= dt('%B %e, %Y', $task['date_due']) ?> </td> <td> - <?php if ($task['is_active'] == \Model\Task::STATUS_OPEN): ?> + <?php if ($task['is_active'] == \Kanboard\Model\Task::STATUS_OPEN): ?> <?= t('Open') ?> <?php else: ?> <?= t('Closed') ?> diff --git a/app/Template/task/details.php b/app/Template/task/details.php index e8fdf5cd..9cd10dda 100644 --- a/app/Template/task/details.php +++ b/app/Template/task/details.php @@ -86,7 +86,7 @@ </li> <?php endif ?> - <?php if (! isset($not_editable) && $task['recurrence_status'] != \Model\Task::RECURRING_STATUS_NONE): ?> + <?php if (! isset($not_editable) && $task['recurrence_status'] != \Kanboard\Model\Task::RECURRING_STATUS_NONE): ?> <li> <strong><?= t('Recurring information') ?></strong> <?= $this->render('task/recurring_info', array( diff --git a/app/Template/task/recurring_info.php b/app/Template/task/recurring_info.php index ad64ae19..83ca0960 100644 --- a/app/Template/task/recurring_info.php +++ b/app/Template/task/recurring_info.php @@ -1,7 +1,7 @@ <ul> - <?php if ($task['recurrence_status'] == \Model\Task::RECURRING_STATUS_PENDING): ?> + <?php if ($task['recurrence_status'] == \Kanboard\Model\Task::RECURRING_STATUS_PENDING): ?> <li><?= t('Recurrent task is scheduled to be generated') ?></li> - <?php elseif ($task['recurrence_status'] == \Model\Task::RECURRING_STATUS_PROCESSED): ?> + <?php elseif ($task['recurrence_status'] == \Kanboard\Model\Task::RECURRING_STATUS_PROCESSED): ?> <li><?= t('Recurrent task has been generated:') ?> <ul> <li> diff --git a/app/Template/task_modification/edit_recurrence.php b/app/Template/task_modification/edit_recurrence.php index f63f1516..dc4faa7a 100644 --- a/app/Template/task_modification/edit_recurrence.php +++ b/app/Template/task_modification/edit_recurrence.php @@ -2,7 +2,7 @@ <h2><?= t('Edit recurrence') ?></h2> </div> -<?php if ($task['recurrence_status'] != \Model\Task::RECURRING_STATUS_NONE): ?> +<?php if ($task['recurrence_status'] != \Kanboard\Model\Task::RECURRING_STATUS_NONE): ?> <div class="listing"> <?= $this->render('task/recurring_info', array( 'task' => $task, @@ -13,7 +13,7 @@ </div> <?php endif ?> -<?php if ($task['recurrence_status'] != \Model\Task::RECURRING_STATUS_PROCESSED): ?> +<?php if ($task['recurrence_status'] != \Kanboard\Model\Task::RECURRING_STATUS_PROCESSED): ?> <form method="post" action="<?= $this->url->href('taskmodification', 'recurrence', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off"> |