You are here

function _hashtags_get_field_text_types in Hashtags 8

Get field Text types that are avaiable for hashtags activation

Return value

array

2 calls to _hashtags_get_field_text_types()
hashtags_form_field_config_edit_form_alter in ./hashtags.module
Implements hook_form_field_config_edit_form_alter().
_hashtags_get_activated_text_fields in ./hashtags.module
Get the field names of the Text type that have Hashtags flag activated

File

./hashtags.module, line 188

Code

function _hashtags_get_field_text_types() {
  return array(
    'text',
    'text_long',
    'text_with_summary',
    'string',
    'string_long',
  );
}