- $condition = str_replace('count', '', $condition);
- $count_required = (int) trim(str_replace('>', '', $condition));
+ $condition = trim(str_replace('count', '', $condition));
+
+ $greater_or_equal = ttStartsWith($condition, '>=');
+ if ($greater_or_equal) $condition = trim(str_replace('>=', '', $condition));
+
+ $less_or_equal = ttStartsWith($condition, '<=');
+ if ($less_or_equal) $condition = trim(str_replace('<=', '', $condition));
+
+ $not_equal = ttStartsWith($condition, '<>');
+ if ($not_equal) $condition = trim(str_replace('<>', '', $condition));
+
+ $greater = ttStartsWith($condition, '>');
+ if ($greater) $condition = trim(str_replace('>', '', $condition));
+
+ $less = ttStartsWith($condition, '<');
+ if ($less) $condition = trim(str_replace('<', '', $condition));
+
+ $equal = ttStartsWith($condition, '=');
+ if ($equal) $condition = trim(str_replace('=', '', $condition));
+
+ $count_required = (int) $condition;