Lines Matching refs:task

1 <?php if (! empty($task['category_id'])): ?>
3 …d-category category-<?= $this->text->e($task['category_name']) ?> <?= $task['category_color_id'] ?…
5 <?= $this->text->e($task['category_name']) ?>
8 $this->text->e($task['category_name']),
11 array('task_id' => $task['id'], 'project_id' => $task['project_id']),
13 'js-modal-large' . (! empty($task['category_description']) ? ' tooltip' : ''),
16 <?php if (! empty($task['category_description'])): ?>
17 <?= $this->app->tooltipMarkdown($task['category_description']) ?>
24 <?php if (! empty($task['tags'])): ?>
27 <?php foreach ($task['tags'] as $tag): ?>
36 <?php if ($task['reference']): ?>
38 …i-helper-hidden-accessible"><?= t('Reference') ?> </span><?= $this->task->renderReference($task) ?>
43 <?php if ($task['is_milestone'] == 1): ?>
49 <?php if ($task['score']): ?>
52 <?= $this->text->e($task['score']) ?>
56 <?php if (! empty($task['time_estimated']) || ! empty($task['time_spent'])): ?>
58 … spent and estimated') ?> </span><?= $this->text->e($task['time_spent']) ?>/<?= $this->text->e($ta…
62 <?php if (! empty($task['date_due'])): ?>
64 <?php if (time() > $task['date_due']): ?>
66 <?php elseif (date('Y-m-d') == date('Y-m-d', $task['date_due'])): ?>
71 <?php if (date('Hi', $task['date_due']) === '0000' ): ?>
72 <?= $this->dt->date($task['date_due']) ?>
74 <?= $this->dt->datetime($task['date_due']) ?>
81 … <?php if ($task['recurrence_status'] == \Kanboard\Model\TaskModel::RECURRING_STATUS_PENDING): ?>
82 …'BoardTooltipController', 'recurrence', array('task_id' => $task['id'], 'project_id' => $task['pro…
85 … <?php if ($task['recurrence_status'] == \Kanboard\Model\TaskModel::RECURRING_STATUS_PROCESSED): ?>
86 …'BoardTooltipController', 'recurrence', array('task_id' => $task['id'], 'project_id' => $task['pro…
89 <?php if (! empty($task['nb_links'])): ?>
90 …a-fw"></i>'.$task['nb_links'], $this->url->href('BoardTooltipController', 'tasklinks', array('task…
93 <?php if (! empty($task['nb_external_links'])): ?>
94 …/i>'.$task['nb_external_links'], $this->url->href('BoardTooltipController', 'externallinks', array…
97 <?php if (! empty($task['nb_subtasks'])): ?>
98task['nb_completed_subtasks'] / $task['nb_subtasks'] * 100, 0).'%', $this->url->href('BoardTooltip…
101 <?php if (! empty($task['nb_files'])): ?>
102 …-fw"></i>'.$task['nb_files'], $this->url->href('BoardTooltipController', 'attachments', array('tas…
105 <?php if ($task['nb_comments'] > 0): ?>
107 …<?php $aria_label = $task['nb_comments'] == 1 ? t('%d comment', $task['nb_comments']) : t('%d comm…
108 …ria-label="<?= $aria_label ?>"><i class="fa fa-comments-o"></i>&nbsp;<?= $task['nb_comments'] ?></…
112 $task['nb_comments'],
115 array('task_id' => $task['id'], 'project_id' => $task['project_id']),
116 …$task['nb_comments'] == 1 ? t('%d comment', $task['nb_comments']) : t('%d comments', $task['nb_com…
121 <?php if (! empty($task['description'])): ?>
122 …BoardTooltipController', 'description', array('task_id' => $task['id'], 'project_id' => $task['pro…
125 <?php if ($task['is_active'] == 1): ?>
127 …idden-accessible"><?= t('Task age in days') ?> </span><?= $this->dt->age($task['date_creation']) ?…
128 …en-accessible"><?= t('Days in this column') ?> </span><?= $this->dt->age($task['date_moved']) ?></…
134 <?= $this->task->renderPriority($task['priority']) ?>
136 <?= $this->hook->render('template:board:task:icons', array('task' => $task)) ?>
140 <?= $this->hook->render('template:board:task:footer', array('task' => $task)) ?>