Subversion Repositories oidplus

Rev

Rev 433 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 433 Rev 502
Line 87... Line 87...
87
        }
87
        }
88
 
88
 
89
        public function isNullFunction($expr1, $expr2): string {
89
        public function isNullFunction($expr1, $expr2): string {
90
                return "ifnull($expr1, $expr2)";
90
                return "ifnull($expr1, $expr2)";
91
        }
91
        }
-
 
92
 
-
 
93
        public function filterQuery($sql): string {
-
 
94
                return $sql;
-
 
95
        }
-
 
96
 
-
 
97
        public function getSQLBool($bool): string {
-
 
98
                return $bool ? '1' : '0';
-
 
99
        }
92
}
100
}
93
101