projectId = $projectId; return $this; } /** * Apply formatter * * @access public * @return array */ public function format() { $swimlanes = $this->swimlaneModel->getAllByStatus($this->projectId, SwimlaneModel::ACTIVE); $columns = $this->columnModel->getAll($this->projectId); if (empty($swimlanes) || empty($columns)) { return array(); } $this->hook->reference('formatter:board:query', $this->query); $tasks = $this->query ->eq(TaskModel::TABLE.'.project_id', $this->projectId) ->asc(TaskModel::TABLE.'.position') ->findAll(); $task_ids = array_column($tasks, 'id'); $tags = $this->taskTagModel->getTagsByTaskIds($task_ids); return $this->boardSwimlaneFormatter ->withSwimlanes($swimlanes) ->withColumns($columns) ->withTasks($tasks) ->withTags($tags) ->format(); } }