operator == 'between') { $this->query->add_where($this->options['group'], "$field >= %f", $this->value['min']); $this->query->add_where($this->options['group'], "$field <= %f", $this->value['max']); } else { $this->query->add_where($this->options['group'], "$field <= %f OR $field >= %f", $this->value['min'], $this->value['max']); } } function op_simple($field) { $this->query->add_where($this->options['group'], "$field $this->operator %f", $this->value['value']); } }