taskFinderModel->exists($task_id)) { return false; } $this->taskFileModel->removeAll($task_id); return $this->db->table(self::TABLE)->eq('id', $task_id)->remove(); } /** * Get a the task id from a text * * Example: "Fix bug #1234" will return 1234 * * @access public * @param string $message Text * @return integer */ public function getTaskIdFromText($message) { if (preg_match('!#(\d+)!i', $message, $matches) && isset($matches[1])) { return $matches[1]; } return 0; } /** * Get task progress based on the column position * * @access public * @param array $task * @param array $columns * @return integer */ public function getProgress(array $task, array $columns) { if ($task['is_active'] == self::STATUS_CLOSED) { return 100; } $position = 0; foreach ($columns as $column_id => $column_title) { if ($column_id == $task['column_id']) { break; } $position++; } return round(($position * 100) / count($columns), 1); } }