Habari\FormControlCheckboxes::process PHP Method

process() public method

Obtain the value of this control as supplied by the incoming $_POST values
public process ( )
    public function process()
    {
        if (isset($_POST[$this->input_name()])) {
            $this->value = $_POST[$this->input_name()];
        } else {
            $this->value = false;
        }
    }
FormControlCheckboxes