You are here

function imagefield_tokens_filefield_sources_widgets in ImageField Tokens 8.2

Implements hook_filefield_sources_widgets().

This returns a list of widgets that are compatible with FileField Sources.

File

./imagefield_tokens.module, line 34
Contains functions related to the module functionality and Drupal hooks.

Code

function imagefield_tokens_filefield_sources_widgets() {
  return [
    'file_generic',
    'image_image',
    'imagefield_tokens',
    'imagefield_tokens_widget_crop',
  ];
}