function node_field_admin_settings_form in Node Field 7.2
Admin form.
1 string reference to 'node_field_admin_settings_form'
- node_field_menu in ./
node_field.module - Implements hook_menu().
File
- includes/
pages/ node_field.admin.inc, line 11 - Admin interface for Node Field module.
Code
function node_field_admin_settings_form($form, &$form_state) {
// Return default system settings form.
$form = system_settings_form($form);
return $form;
}