From 658123a2328867a87da59ca660a7044d99eea22c Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Sat, 16 Aug 2014 17:53:07 -0700 Subject: The fullname is displayed instead of the username if not empty --- app/Model/Comment.php | 6 ++++-- app/Model/Project.php | 15 +++++++++++++-- app/Model/SubTask.php | 2 +- app/Model/Task.php | 7 +++++-- app/Model/User.php | 12 +++++++++++- app/Templates/board_task.php | 4 ++-- app/Templates/comment_show.php | 2 +- app/Templates/notification_comment_creation.php | 2 +- app/Templates/subtask_show.php | 2 +- app/Templates/task_show.php | 4 ++-- app/Templates/task_table.php | 4 ++-- app/Templates/user_remove.php | 2 +- app/helpers.php | 2 +- 13 files changed, 45 insertions(+), 19 deletions(-) (limited to 'app') diff --git a/app/Model/Comment.php b/app/Model/Comment.php index b849fc23..43c275bc 100644 --- a/app/Model/Comment.php +++ b/app/Model/Comment.php @@ -45,7 +45,8 @@ class Comment extends Base self::TABLE.'.task_id', self::TABLE.'.user_id', self::TABLE.'.comment', - User::TABLE.'.username' + User::TABLE.'.username', + User::TABLE.'.name' ) ->join(User::TABLE, 'id', 'user_id') ->orderBy(self::TABLE.'.date', 'ASC') @@ -70,7 +71,8 @@ class Comment extends Base self::TABLE.'.user_id', self::TABLE.'.date', self::TABLE.'.comment', - User::TABLE.'.username' + User::TABLE.'.username', + User::TABLE.'.name' ) ->join(User::TABLE, 'id', 'user_id') ->eq(self::TABLE.'.id', $comment_id) diff --git a/app/Model/Project.php b/app/Model/Project.php index 9f53fdda..9ee54cbd 100644 --- a/app/Model/Project.php +++ b/app/Model/Project.php @@ -80,12 +80,23 @@ class Project extends Base */ public function getAllowedUsers($project_id) { - return $this->db + $users = $this->db ->table(self::TABLE_USERS) ->join(User::TABLE, 'id', 'user_id') ->eq('project_id', $project_id) ->asc('username') - ->listing('user_id', 'username'); + ->columns(User::TABLE.'.id', User::TABLE.'.username', User::TABLE.'.name') + ->findAll(); + + $result = array(); + + foreach ($users as $user) { + $result[$user['id']] = $user['name'] ?: $user['username']; + } + + asort($result); + + return $result; } /** diff --git a/app/Model/SubTask.php b/app/Model/SubTask.php index c7bab44b..9f2941c5 100644 --- a/app/Model/SubTask.php +++ b/app/Model/SubTask.php @@ -80,7 +80,7 @@ class SubTask extends Base $status = $this->getStatusList(); $subtasks = $this->db->table(self::TABLE) ->eq('task_id', $task_id) - ->columns(self::TABLE.'.*', User::TABLE.'.username') + ->columns(self::TABLE.'.*', User::TABLE.'.username', User::TABLE.'.name') ->join(User::TABLE, 'id', 'user_id') ->findAll(); diff --git a/app/Model/Task.php b/app/Model/Task.php index 6647f041..0753c57d 100644 --- a/app/Model/Task.php +++ b/app/Model/Task.php @@ -125,7 +125,9 @@ class Task extends Base projects.name AS project_name, columns.title AS column_title, users.username AS assignee_username, - creators.username AS creator_username + users.name AS assignee_name, + creators.username AS creator_username, + creators.name AS creator_name FROM tasks LEFT JOIN users ON users.id = tasks.owner_id LEFT JOIN users AS creators ON creators.id = tasks.creator_id @@ -209,7 +211,8 @@ class Task extends Base 'tasks.is_active', 'tasks.score', 'tasks.category_id', - 'users.username' + 'users.username AS assignee_username', + 'users.name AS assignee_name' ) ->join(User::TABLE, 'id', 'owner_id'); diff --git a/app/Model/User.php b/app/Model/User.php index 5f6b8a3a..19ec0494 100644 --- a/app/Model/User.php +++ b/app/Model/User.php @@ -98,7 +98,17 @@ class User extends Base */ public function getList() { - return $this->db->table(self::TABLE)->asc('username')->listing('id', 'username'); + $users = $this->db->table(self::TABLE)->columns('id', 'username', 'name')->findAll(); + + $result = array(); + + foreach ($users as $user) { + $result[$user['id']] = $user['name'] ?: $user['username']; + } + + asort($result); + + return $result; } /** diff --git a/app/Templates/board_task.php b/app/Templates/board_task.php index 61f7f5bf..0bc96579 100644 --- a/app/Templates/board_task.php +++ b/app/Templates/board_task.php @@ -4,7 +4,7 @@ - + @@ -24,7 +24,7 @@ - + diff --git a/app/Templates/comment_show.php b/app/Templates/comment_show.php index d9d40d7e..08d77b29 100644 --- a/app/Templates/comment_show.php +++ b/app/Templates/comment_show.php @@ -1,7 +1,7 @@

- @ + @

diff --git a/app/Templates/notification_comment_creation.php b/app/Templates/notification_comment_creation.php index ff286790..79d34f90 100644 --- a/app/Templates/notification_comment_creation.php +++ b/app/Templates/notification_comment_creation.php @@ -1,6 +1,6 @@

(#)

-

+

diff --git a/app/Templates/subtask_show.php b/app/Templates/subtask_show.php index b9385c7e..968473af 100644 --- a/app/Templates/subtask_show.php +++ b/app/Templates/subtask_show.php @@ -24,7 +24,7 @@ $total_remaining = 0; - + diff --git a/app/Templates/task_show.php b/app/Templates/task_show.php index a353d4d0..329fde80 100644 --- a/app/Templates/task_show.php +++ b/app/Templates/task_show.php @@ -24,13 +24,13 @@
  • - +
  • - + diff --git a/app/Templates/task_table.php b/app/Templates/task_table.php index ad513452..d10d3f42 100644 --- a/app/Templates/task_table.php +++ b/app/Templates/task_table.php @@ -25,8 +25,8 @@ - - + + diff --git a/app/Templates/user_remove.php b/app/Templates/user_remove.php index 61d4163b..45774d27 100644 --- a/app/Templates/user_remove.php +++ b/app/Templates/user_remove.php @@ -4,7 +4,7 @@
  • -

    +

    diff --git a/app/helpers.php b/app/helpers.php index ec13c5ab..9a2b4cbf 100644 --- a/app/helpers.php +++ b/app/helpers.php @@ -37,7 +37,7 @@ function is_admin() function get_username() { - return $_SESSION['user']['username']; + return $_SESSION['user']['name'] ?: $_SESSION['user']['username']; } function parse($text) -- cgit v1.2.3