function form_type_token_value

Determines the value for form's token value.

Parameters

$element: The form element whose value is being populated.

$input: The incoming input to populate the form element. If this is FALSE, the element's default value should be returned.

Return value

The data that will appear in $form_state['values'] for this element, or nothing to use the default.

Related topics

File

includes/form.inc, line 2636

Code

function form_type_token_value($element, $input = FALSE) {
    if ($input !== FALSE) {
        return (string) $input;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.