Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
creecros committed Oct 19, 2022
1 parent 73b1ca4 commit e352c2b
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,13 @@ public function initialize()
$this->template->hook->attach('template:task:details:third-column', 'group_assign:task/multi');

//Forms - task_creation.php and task_modification.php
$this->template->setTemplateOverride('task_creation/show', 'group_assign:task_creation/show');
$this->template->setTemplateOverride('task_modification/show', 'group_assign:task_modification/show');

if (file_exists('plugins/TemplateTitle')) {
$this->template->setTemplateOverride('task_creation/show', 'group_assign:task_creation/show_TT');
$this->template->setTemplateOverride('task_modification/show', 'group_assign:task_modification/show_TT');
} else {
$this->template->setTemplateOverride('task_creation/show', 'group_assign:task_creation/show');
$this->template->setTemplateOverride('task_modification/show', 'group_assign:task_modification/show');
}
//Board
$this->template->hook->attach('template:board:private:task:before-title', 'group_assign:board/group');

Expand Down
53 changes: 53 additions & 0 deletions Template/task_creation/show_TT.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<div class="page-header">
<h2><?= $this->text->e($project['name']) ?> &gt; <?= t('New task') ?></h2>
</div>
<form method="post" action="<?= $this->url->href('GroupAssignTaskCreationController', 'save', array('plugin' => 'Group_assign', 'project_id' => $project['id'])) ?>" autocomplete="off">
<?= $this->form->csrf() ?>

<div class="task-form-container">
<div class="task-form-main-column">
<?= $this->task->renderTitleField($values, $errors) ?>
<?= $this->task->renderDescriptionField($values, $errors) ?>
<?= $this->helper->templateTitleHelper->renderDescriptionAndTitleTemplateDropdown($project['id']) ?>
<?= $this->task->renderTagField($project) ?>

<?= $this->hook->render('template:task:form:first-column', array('values' => $values, 'errors' => $errors)) ?>
</div>

<div class="task-form-secondary-column">
<?= $this->task->renderColorField($values) ?>
<?= $this->task->renderAssigneeField($users_list, $values, $errors) ?>
<?= $this->helper->newTaskHelper->renderGroupField($values, $errors) ?>
<?= $this->helper->newTaskHelper->renderMultiAssigneeField($users_list, $values) ?>
<?= $this->task->renderCategoryField($categories_list, $values, $errors) ?>
<?= $this->task->renderSwimlaneField($swimlanes_list, $values, $errors) ?>
<?= $this->task->renderColumnField($columns_list, $values, $errors) ?>
<?= $this->task->renderPriorityField($project, $values) ?>

<?= $this->hook->render('template:task:form:second-column', array('values' => $values, 'errors' => $errors)) ?>
</div>

<div class="task-form-secondary-column">
<?= $this->task->renderDueDateField($values, $errors) ?>
<?= $this->task->renderStartDateField($values, $errors) ?>
<?= $this->task->renderTimeEstimatedField($values, $errors) ?>
<?= $this->task->renderTimeSpentField($values, $errors) ?>
<?= $this->task->renderScoreField($values, $errors) ?>
<?= $this->task->renderReferenceField($values, $errors) ?>

<?= $this->hook->render('template:task:form:third-column', array('values' => $values, 'errors' => $errors)) ?>
</div>

<div class="task-form-bottom">

<?= $this->hook->render('template:task:form:bottom-before-buttons', array('values' => $values, 'errors' => $errors)) ?>

<?php if (! isset($duplicate)): ?>
<?= $this->form->checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1) ?>
<?= $this->form->checkbox('duplicate_multiple_projects', t('Duplicate to multiple projects'), 1) ?>
<?php endif ?>

<?= $this->modal->submitButtons() ?>
</div>
</div>
</form>
46 changes: 46 additions & 0 deletions Template/task_modification/show_TT.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<div class="page-header">
<h2><?= $this->text->e($project['name']) ?> &gt; <?= $this->text->e($task['title']) ?></h2>
</div>
<form method="post" action="<?= $this->url->href('GroupAssignTaskModificationController', 'update', array('plugin' => 'Group_assign', 'task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
<?= $this->form->csrf() ?>

<div class="task-form-container">
<div class="task-form-main-column">
<?= $this->task->renderTitleField($values, $errors) ?>
<?= $this->task->renderDescriptionField($values, $errors) ?>
<?= $this->helper->templateTitleHelper->renderDescriptionAndTitleTemplateDropdown($project['id']) ?>
<?= $this->task->renderTagField($project, $tags) ?>

<?= $this->hook->render('template:task:form:first-column', array('values' => $values, 'errors' => $errors)) ?>
</div>

<div class="task-form-secondary-column">
<?= $this->task->renderColorField($values) ?>
<?= $this->task->renderAssigneeField($users_list, $values, $errors) ?>
<?= $this->helper->newTaskHelper->renderGroupField($values, $errors) ?>
<?= $this->helper->newTaskHelper->renderMultiAssigneeField($users_list, $values) ?>
<?= $this->task->renderCategoryField($categories_list, $values, $errors) ?>
<?= $this->task->renderPriorityField($project, $values) ?>

<?= $this->hook->render('template:task:form:second-column', array('values' => $values, 'errors' => $errors)) ?>
</div>

<div class="task-form-secondary-column">
<?= $this->task->renderDueDateField($values, $errors) ?>
<?= $this->task->renderStartDateField($values, $errors) ?>
<?= $this->task->renderTimeEstimatedField($values, $errors) ?>
<?= $this->task->renderTimeSpentField($values, $errors) ?>
<?= $this->task->renderScoreField($values, $errors) ?>
<?= $this->task->renderReferenceField($values, $errors) ?>

<?= $this->hook->render('template:task:form:third-column', array('values' => $values, 'errors' => $errors)) ?>
</div>

<div class="task-form-bottom">

<?= $this->hook->render('template:task:form:bottom-before-buttons', array('values' => $values, 'errors' => $errors)) ?>

<?= $this->modal->submitButtons() ?>
</div>
</div>
</form>

0 comments on commit e352c2b

Please sign in to comment.