Add comments sorting

This commit is contained in:
Frederic Guillot
2015-10-11 18:21:54 -04:00
parent c77c9443e9
commit ffe615d201
10 changed files with 79 additions and 14 deletions

View File

@@ -34,9 +34,10 @@ class Comment extends Base
*
* @access public
* @param integer $task_id Task id
* @param string $sorting ASC/DESC
* @return array
*/
public function getAll($task_id)
public function getAll($task_id, $sorting = 'ASC')
{
return $this->db
->table(self::TABLE)
@@ -51,7 +52,7 @@ class Comment extends Base
User::TABLE.'.email'
)
->join(User::TABLE, 'id', 'user_id')
->orderBy(self::TABLE.'.date_creation', 'ASC')
->orderBy(self::TABLE.'.date_creation', $sorting)
->eq(self::TABLE.'.task_id', $task_id)
->findAll();
}

View File

@@ -154,4 +154,26 @@ class UserSession extends Base
{
$_SESSION['board_collapsed'][$project_id] = $collapsed;
}
/**
* Set comments sorting
*
* @access public
* @param string $order
*/
public function setCommentSorting($order)
{
$this->session['comment_sorting'] = $order;
}
/**
* Get comments sorting direction
*
* @access public
* @return string
*/
public function getCommentSorting()
{
return $this->session['comment_sorting'] ?: 'ASC';
}
}