summaryrefslogtreecommitdiff
path: root/app/Template/task_mail/create.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-06-03 17:31:32 -0400
committerFrederic Guillot <fred@kanboard.net>2017-06-03 17:31:32 -0400
commitdd8d7ef49d522a15dbf0d04f033f676580f30ad7 (patch)
treee82070f0831338f712a9312b72dc5edbd0c2a780 /app/Template/task_mail/create.php
parent9668723af4f9ad633d9c9131fbdceb47fa326d9e (diff)
Add configurable list of predefined subjects when sending a task by email
Diffstat (limited to 'app/Template/task_mail/create.php')
-rw-r--r--app/Template/task_mail/create.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Template/task_mail/create.php b/app/Template/task_mail/create.php
index 4df81a6b..63a515ff 100644
--- a/app/Template/task_mail/create.php
+++ b/app/Template/task_mail/create.php
@@ -22,6 +22,22 @@
<?= $this->form->label(t('Subject'), 'subject') ?>
<?= $this->form->text('subject', $values, $errors, array('required', 'tabindex="2"')) ?>
+ <?php if (! empty($project['predefined_email_subjects'])): ?>
+ <div class="dropdown">
+ <a href="#" class="dropdown-menu dropdown-menu-link-icon"><i class="fa fa-archive"></i><i class="fa fa-caret-down"></i></a>
+ <ul>
+ <?php foreach (explode("\r\n", trim($project['predefined_email_subjects'])) as $subject): ?>
+ <?php $subject = trim($subject); ?>
+
+ <?php if (! empty($subject)): ?>
+ <li data-subject="<?= $this->text->e($subject) ?>" class="js-autocomplete-subject">
+ <?= $this->text->e($subject) ?>
+ </li>
+ <?php endif ?>
+ <?php endforeach ?>
+ </ul>
+ </div>
+ <?php endif ?>
<?= $this->form->checkbox('add_comment', t('Log this action in a comment'), 1) ?>