function fc_form_field_ui_field_edit_form_alter in Field Complete 7
Implements hook_field_widget_settings_form().
This function adds the checkbox to every field to determine whether it should be used in the completeness calculation. It is set differently for every field instance.
File
- ./
fc.module, line 92 - Field Complete - Provides field-based completeness for any entity.
Code
function fc_form_field_ui_field_edit_form_alter(&$form, &$form_state) {
module_load_include('form.inc', 'fc');
return _fc_form_field_ui_field_edit_form_alter($form, $form_state);
}