summaryrefslogtreecommitdiff
path: root/models/task.php
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-02-22 13:37:06 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-02-22 13:37:06 -0500
commita1923d3d7f9276e859d6fd6bee339f0ea00f6544 (patch)
tree84caca943de5d0e016455ea2f6896d0b697fdf05 /models/task.php
parentfd28d50597d4f255ba9514e0fc03c8cb67c86f22 (diff)
Add a page to display completed tasks and add the completion date column for tasks
Diffstat (limited to 'models/task.php')
-rw-r--r--models/task.php40
1 files changed, 36 insertions, 4 deletions
diff --git a/models/task.php b/models/task.php
index db27c650..9d23baf0 100644
--- a/models/task.php
+++ b/models/task.php
@@ -33,6 +33,7 @@ class Task extends Base
self::TABLE.'.title',
self::TABLE.'.description',
self::TABLE.'.date_creation',
+ self::TABLE.'.date_completed',
self::TABLE.'.color_id',
self::TABLE.'.project_id',
self::TABLE.'.column_id',
@@ -55,9 +56,30 @@ class Task extends Base
}
}
- public function getAllByProjectId($project_id)
+ public function getAllByProjectId($project_id, array $status = array(1, 0))
{
- return $this->db->table(self::TABLE)->eq('project_id', $project_id)->findAll();
+ return $this->db->table(self::TABLE)
+ ->columns(
+ self::TABLE.'.id',
+ self::TABLE.'.title',
+ self::TABLE.'.description',
+ self::TABLE.'.date_creation',
+ self::TABLE.'.date_completed',
+ self::TABLE.'.color_id',
+ self::TABLE.'.project_id',
+ self::TABLE.'.column_id',
+ self::TABLE.'.owner_id',
+ self::TABLE.'.position',
+ self::TABLE.'.is_active',
+ \Model\Board::TABLE.'.title AS column_title',
+ \Model\User::TABLE.'.username'
+ )
+ ->join(\Model\Board::TABLE, 'id', 'column_id')
+ ->join(\Model\User::TABLE, 'id', 'owner_id')
+ ->eq(self::TABLE.'.project_id', $project_id)
+ ->in('is_active', $status)
+ ->desc('date_completed')
+ ->findAll();
}
public function countByProjectId($project_id, $status = array(1, 0))
@@ -117,12 +139,22 @@ class Task extends Base
public function close($task_id)
{
- return $this->db->table(self::TABLE)->eq('id', $task_id)->update(array('is_active' => 0));
+ return $this->db->table(self::TABLE)
+ ->eq('id', $task_id)
+ ->update(array(
+ 'is_active' => 0,
+ 'date_completed' => time()
+ ));
}
public function open($task_id)
{
- return $this->db->table(self::TABLE)->eq('id', $task_id)->update(array('is_active' => 1));
+ return $this->db->table(self::TABLE)
+ ->eq('id', $task_id)
+ ->update(array(
+ 'is_active' => 1,
+ 'date_completed' => ''
+ ));
}
public function remove($task_id)