1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54:
<?php
class HTMLTableLikeTextSQLFilter extends HTMLTableTextFilter implements SQLFragmentBuilder
{
private static $param_id_index = 0;
private $db_field;
public function __construct($db_field, $name, $label, $match_regex = null)
{
$this->db_field = $db_field;
parent::__construct($name, $label, $match_regex);
}
public function get_sql()
{
$parameter_name = $this->get_sql_value_parameter_prefix() . '_' . $this->db_field;
$query = $this->db_field . ' LIKE :' . $parameter_name;
$parameters = array($parameter_name => $this->get_value());
return new SQLFragment($query, $parameters);
}
public function is_value_allowed($value)
{
if (empty($value))
{
return false;
}
return parent::is_value_allowed($value);
}
protected function get_sql_value_parameter_prefix()
{
return __CLASS__ . '_' . self::$param_id_index++;
}
}
?>