Hi,
I'm trying to use hook_field_settings_form to add just one simple settings to a field wich has been creadted with administration site (structure/manage field). I try just this :

mymodule_field_settings_form($field, $instance, $has_data) {
  dsm($field);
}

but nothing happen even if I put die or dsm('ll'). What surprises me is that there are no issue on this, I see some other module make form_alter and own variable_set or db_insert but I would like to use settings form field if I can.
I search in field_ui.admin.inc and
in function field_ui_field_settings_form($form, &$form_state, $instance) wich is call, thre are:

//line 1598
  $additions = module_invoke($field['module'], 'field_settings_form', $field, $instance, $has_data);

But

$field['module']

is equal to string "list" is it normal?

Comments

Version: 7.22 » 7.x-dev

Core issues are now filed against the dev versions where changes will be made. Document the specific release you are using in your issue comment. More information about choosing a version.