Add configurable list of predefined subjects when sending a task by email
This commit is contained in:
@@ -63,5 +63,11 @@
|
||||
<?= $this->form->number('priority_end', $values, $errors, array('tabindex="10"')) ?>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend><?= t('Predefined Email Subjects') ?></legend>
|
||||
<?= $this->form->textarea('predefined_email_subjects', $values, $errors, array('tabindex="11"')) ?>
|
||||
<p class="form-help"><?= t('Write one subject by line.') ?></p>
|
||||
</fieldset>
|
||||
|
||||
<?= $this->modal->submitButtons(array('tabindex' => 11)) ?>
|
||||
</form>
|
||||
|
||||
@@ -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) ?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user