function key_input_none_build_configuration_form in Key 7.3
Build the plugin configuration form.
Return value
array The plugin configuration form.
1 string reference to 'key_input_none_build_configuration_form'
File
- plugins/
key_input/ none.inc, line 20
Code
function key_input_none_build_configuration_form($form, &$form_state) {
$form['key_value_message'] = array(
'#markup' => t("The selected key provider does not accept a value. See the provider's description for instructions on how and where to store the key value."),
);
return $form;
}