You are here

function radioactivity_form_field_ui_field_edit_form_alter in Radioactivity 7.2

Implementation of hook_form_alter().

File

./radioactivity.field.inc, line 321

Code

function radioactivity_form_field_ui_field_edit_form_alter(&$form, &$form_state, $form_id) {
  if ($form['#field']['type'] == 'radioactivity') {

    // Hide the 'required' and 'multi value' field settings
    $form['field']['#access'] = FALSE;
    $form['instance']['required']['#access'] = FALSE;
  }
}