You are here

function linkit_linkit_allowed_field_types in Linkit 7.3

Implements hook_linkit_allowed_field_types().

File

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

Code

function linkit_linkit_allowed_field_types() {
  $allowed_field_types = array(
    'text',
    'text_long',
    'text_with_summary',
    'link_field',
  );
  return $allowed_field_types;
}