Classes

File builder/table/filter/sql/HTMLTableEqualsFromListSQLFilter.class.php

File builder/table/filter/sql/HTMLTableEqualsFromListSQLFilter.class.php

 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: 
<?php
/**
 * @package     Builder
 * @subpackage  Table\filter\sql
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Loic ROUCHON <horn@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2014 12 22
 * @since       PHPBoost 3.0 - 2010 02 27
*/

class HTMLTableEqualsFromListSQLFilter 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);
    }

    /**
     * {@inheritdoc}
     */
    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 . '=:' . $parameter_name;
            $parameters = array($parameter_name => $this->get_value()->get_raw_value());
            return new SQLFragment($query, $parameters);
        }
        return new SQLFragment();
    }

    protected function get_sql_value_parameter_prefix()
    {
        return __CLASS__ . '_' . self::$param_id_index++;
    }
}

?>