diff options
| author | Frederic Guillot <fred@kanboard.net> | 2016-04-09 22:42:17 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2016-04-09 22:42:17 -0400 |
| commit | 11858be4e8d5aba983700c6cba1c4d0a33ea8e9d (patch) | |
| tree | 38427e86d52185df95e2b891e4bcd50aeb56eeb9 /app/Model/Base.php | |
| parent | 42813d702d1c3e5659301bc771f8dbb37a6d15cd (diff) | |
Filter refactoring
Diffstat (limited to 'app/Model/Base.php')
| -rw-r--r-- | app/Model/Base.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app/Model/Base.php b/app/Model/Base.php index 714b4308..a27560c8 100644 --- a/app/Model/Base.php +++ b/app/Model/Base.php @@ -31,28 +31,4 @@ abstract class Base extends \Kanboard\Core\Base return (int) $db->getLastId(); }); } - - /** - * Build SQL condition for a given time range - * - * @access protected - * @param string $start_time Start timestamp - * @param string $end_time End timestamp - * @param string $start_column Start column name - * @param string $end_column End column name - * @return string - */ - protected function getCalendarCondition($start_time, $end_time, $start_column, $end_column) - { - $start_column = $this->db->escapeIdentifier($start_column); - $end_column = $this->db->escapeIdentifier($end_column); - - $conditions = array( - "($start_column >= '$start_time' AND $start_column <= '$end_time')", - "($start_column <= '$start_time' AND $end_column >= '$start_time')", - "($start_column <= '$start_time' AND ($end_column = '0' OR $end_column IS NULL))", - ); - - return $start_column.' IS NOT NULL AND '.$start_column.' > 0 AND ('.implode(' OR ', $conditions).')'; - } } |
