getProject(); $search = $this->helper->projectHeader->getSearchQuery($project); if ($this->request->getIntegerParam('show_subtasks') !== 0 || $this->request->getIntegerParam('hide_subtasks') !== 0 || $this->request->getStringParam('direction') !== '' || $this->request->getStringParam('order') !== '') { $this->checkReusableGETCSRFParam(); } if ($this->request->getIntegerParam('show_subtasks')) { session_set('subtaskListToggle', true); } elseif ($this->request->getIntegerParam('hide_subtasks')) { session_set('subtaskListToggle', false); } if ($this->userSession->hasSubtaskListActivated()) { $formatter = $this->taskListSubtaskFormatter; } else { $formatter = $this->taskListFormatter; } list($order, $direction) = $this->userSession->getListOrder($project['id']); $direction = $this->request->getStringParam('direction', $direction); $order = $this->request->getStringParam('order', $order); $this->userSession->setListOrder($project['id'], $order, $direction); $paginator = $this->paginator ->setUrl('TaskListController', 'show', array('project_id' => $project['id'], 'csrf_token' => $this->token->getReusableCSRFToken())) ->setMax(30) ->setOrder($order) ->setDirection($direction) ->setFormatter($formatter) ->setQuery($this->taskLexer ->build($search) ->withFilter(new TaskProjectFilter($project['id'])) ->getQuery() ) ->calculate(); $this->response->html($this->helper->layout->app('task_list/listing', array( 'project' => $project, 'title' => $project['name'], 'description' => $this->helper->projectHeader->getDescription($project), 'paginator' => $paginator, ))); } }