You are here

function qtip_supported_fields in qTip (Stylish jQuery Tooltips) 7.2

Helper function to only show qTip information on currently supported fields.

1 call to qtip_supported_fields()
_qtip_is_supported_field in modules/qtip_field/qtip_field.module
Check to see whether a field type and it's widget type is supported.

File

modules/qtip_field/qtip_field.module, line 197

Code

function qtip_supported_fields() {
  return array(
    'text' => array(),
    'text_long' => array(),
    'text_with_summary' => array(),
    // 'image' => array(),
    'list_boolean' => array(),
    'list_text' => array(
      'options_select',
    ),
    'list_float' => array(
      'options_select',
    ),
    'list_integer' => array(
      'options_select',
    ),
    'taxonomy_term_reference' => array(
      'taxonomy_autocomplete',
      'options_select',
      'autocomplete_deluxe_taxonomy',
    ),
    'number_decimal' => array(),
    'number_integer' => array(),
  );
}