summaryrefslogtreecommitdiff
path: root/app/Controller/TaskRecurrenceController.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-26 21:38:43 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-26 21:38:43 -0400
commit9ebbe3da56914c408327997cea4eb00db2f88e0c (patch)
tree92a40db64f958abff457add4aa643fc6154a05d3 /app/Controller/TaskRecurrenceController.php
parent33dea152fc6b0c061b1f61060cc75710dd0ec236 (diff)
Rename task controllers
Diffstat (limited to 'app/Controller/TaskRecurrenceController.php')
-rw-r--r--app/Controller/TaskRecurrenceController.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/app/Controller/TaskRecurrenceController.php b/app/Controller/TaskRecurrenceController.php
new file mode 100644
index 00000000..1acf4038
--- /dev/null
+++ b/app/Controller/TaskRecurrenceController.php
@@ -0,0 +1,65 @@
+<?php
+
+namespace Kanboard\Controller;
+
+/**
+ * Task Recurrence controller
+ *
+ * @package Kanboard\Controller
+ * @author Frederic Guillot
+ */
+class TaskRecurrenceController extends BaseController
+{
+ /**
+ * Edit recurrence form
+ *
+ * @access public
+ * @param array $values
+ * @param array $errors
+ * @throws \Kanboard\Core\Controller\AccessForbiddenException
+ * @throws \Kanboard\Core\Controller\PageNotFoundException
+ */
+ public function edit(array $values = array(), array $errors = array())
+ {
+ $task = $this->getTask();
+
+ if (empty($values)) {
+ $values = $task;
+ }
+
+ $this->response->html($this->template->render('task_recurrence/edit', array(
+ 'values' => $values,
+ 'errors' => $errors,
+ 'task' => $task,
+ 'recurrence_status_list' => $this->task->getRecurrenceStatusList(),
+ 'recurrence_trigger_list' => $this->task->getRecurrenceTriggerList(),
+ 'recurrence_timeframe_list' => $this->task->getRecurrenceTimeframeList(),
+ 'recurrence_basedate_list' => $this->task->getRecurrenceBasedateList(),
+ )));
+ }
+
+ /**
+ * Update recurrence form
+ *
+ * @access public
+ */
+ public function update()
+ {
+ $task = $this->getTask();
+ $values = $this->request->getValues();
+
+ list($valid, $errors) = $this->taskValidator->validateEditRecurrence($values);
+
+ if ($valid) {
+ if ($this->taskModification->update($values)) {
+ $this->flash->success(t('Task updated successfully.'));
+ } else {
+ $this->flash->failure(t('Unable to update your task.'));
+ }
+
+ return $this->response->redirect($this->helper->url->to('task', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])), true);
+ }
+
+ return $this->edit($values, $errors);
+ }
+}