function fc_form_profile2_form_alter in Field Complete 7
Implements hook_form_profile2_form_alter().
Profile2 behaves very non-standardly with its edit-form handling so we have to try to see if we can't get round its nonsense.
File
- ./
fc.module, line 374 - Field Complete - Provides field-based completeness for any entity.
Code
function fc_form_profile2_form_alter(&$form, &$form_state) {
module_load_include('form.inc', 'fc');
return _fc_form_profile2_form_alter($form, $form_state);
}