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:
<?php
class HTMLTableLikeFromListSQLFilter extends HTMLTableEqualsFromListFilter implements SQLFragmentBuilder
{
private static $param_id_index = 0;
private $db_field;
public function __construct($db_field, $name, $label, array $allowed_values)
{
$this->db_field = $db_field;
parent::__construct($name, $label, $allowed_values);
}
public function get_sql()
{
$choice_option = $this->get_value();
if ($choice_option instanceof FormFieldSelectChoiceOption)
{
$parameter_name = $this->get_sql_value_parameter_prefix() . '_' . $this->db_field;
$query = $this->db_field . 'LIKE :' . $parameter_name;
$parameters = array($parameter_name => $this->get_like_value());
return new SQLFragment($query, $parameters);
}
return new SQLFragment();
}
protected function get_like_value()
{
return $this->get_value()->get_raw_value();
}
protected function get_sql_value_parameter_prefix()
{
return __CLASS__ . '_' . self::$param_id_index++;
}
}
?>