You are here

function mee_field_types in Scald: Media Management made easy 7

Helper function to return a list of supported field.

Note that only fields defined in the core Text module (text, text_long, text_with_summary) are eligible due to the actual implementation.

3 calls to mee_field_types()
mee_field_info_alter in modules/fields/mee/mee.module
Implements hook_field_info_alter().
mee_field_widget_form_alter in modules/fields/mee/mee.module
Implements hook_field_widget_form_alter().
mee_form_alter in modules/fields/mee/mee.module
Implements hook_form_alter().

File

modules/fields/mee/mee.module, line 562
Defines a special textarea, with drag and drop media driven by Scald and dnd.module.

Code

function mee_field_types() {
  return variable_get('mee_field_types', array(
    'text',
    'text_long',
    'text_with_summary',
  ));
}