Habari\FormControlDom::set_value PHP Method

set_value() public method

Set the value of this control
public set_value ( mixed $value, boolean $manually = true ) : FormControl
$value mixed The value to set
$manually boolean True if this value is set internally rather than being POSTed in the form
return FormControl $this
    public function set_value($value, $manually = true)
    {
        $this->node->value = $value;
        return parent::set_value($value, $manually);
    }