Welcome Guest, Not a member yet? Register   Sign In
Suggested add to form_helper
#1

[eluser]mrmeyers99[/eluser]
I was thinking today it would be cool to have something like this in the form_helper:
Code:
function bound_form_input($data = '', $value = '', $extra = '')
{
    if (is_array($data))
        $data['value'] = set_value($data['name']);
    else
        $value = set_value($data);
    return form_input($data, $value, $extra);
}

Not that it's anything urgent, it'd just be helpful to have a "bound" helper for each of the form components, just to save a little bit of coding.




Theme © iAndrew 2016 - Forum software by © MyBB