You are here

function linkit_get_allowed_field_types in Linkit 7.3

Get all allowed filed types.

Return value

An array of allowed filed types.

1 call to linkit_get_allowed_field_types()
linkit_form_field_ui_field_edit_form_alter in ./linkit.field.inc
Implements hook_form_FIELD_UI_FIELD_EDIT_FORM_alter().

File

./linkit.field.inc, line 43
Implementation for Fields and Linkit.

Code

function linkit_get_allowed_field_types() {

  // Get allowed field and widget types.
  $allowed_field_types = module_invoke_all('linkit_allowed_field_types');
  drupal_alter('linkit_allowed_field_types', $allowed_field_types);
  return $allowed_field_types;
}