From 103004ac34d0ff0ba3fd70c7b8c10f50480e78e7 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 27 Aug 2020 12:16:11 -0400 Subject: [PATCH] Remove these functions. Superseded by more recent work --- web/includes/Filter.php | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/web/includes/Filter.php b/web/includes/Filter.php index 8145abb2c..5a441b2ac 100644 --- a/web/includes/Filter.php +++ b/web/includes/Filter.php @@ -197,27 +197,6 @@ class Filter extends ZM_Object { #return $this->defaults{'sort_asc'}; } - public function fields() { - if ( !property_exists($this, 'fields') ) { - $this->parse(); - } - return $this->{'fields'}; - } - - public function sql() { - if ( !property_exists($this, 'sql') ) { - $this->sql(); - } - return $this->{'sql'}; - } - - public function query_string() { - if ( !property_exists($this, 'query') ) { - $this->query(); - } - return $this->{'query'}; - } - public function limit( ) { if ( func_num_args( ) ) { $Query = $this->Query();