From 747b9434d3ef82f55d96185c5afa6d155642ba15 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Wed, 1 Jul 2015 20:55:21 -0400 Subject: Remove method Category::getBoardCategories() --- app/Model/Category.php | 32 -------------------------------- app/Model/TaskFinder.php | 1 + 2 files changed, 1 insertion(+), 32 deletions(-) (limited to 'app/Model') diff --git a/app/Model/Category.php b/app/Model/Category.php index dcc0f88e..f50c0f48 100644 --- a/app/Model/Category.php +++ b/app/Model/Category.php @@ -73,38 +73,6 @@ class Category extends Base ->findOneColumn('id'); } - /** - * Prepare categories to be displayed on the board - * - * @access public - * @param integer $project_id - * @return array - */ - public function getBoardCategories($project_id) - { - $descriptions = array(); - - $listing = array( - -1 => t('All categories'), - 0 => t('No category'), - ); - - $categories = $this->db->table(self::TABLE) - ->eq('project_id', $project_id) - ->asc('name') - ->findAll(); - - foreach ($categories as $category) { - $listing[$category['id']] = $category['name']; - $descriptions[$category['id']] = $category['description']; - } - - return array( - $listing, - $descriptions, - ); - } - /** * Return the list of all categories * diff --git a/app/Model/TaskFinder.php b/app/Model/TaskFinder.php index 181ff360..f061cef0 100644 --- a/app/Model/TaskFinder.php +++ b/app/Model/TaskFinder.php @@ -100,6 +100,7 @@ class TaskFinder extends Base User::TABLE.'.username AS assignee_username', User::TABLE.'.name AS assignee_name', Category::TABLE.'.name AS category_name', + Category::TABLE.'.description AS category_description', Board::TABLE.'.title AS column_name', Project::TABLE.'.name AS project_name' ) -- cgit v1.2.3