You are here

function _imagefield_tokens_support_list in ImageField Tokens 6

Return a list of supported CCK widgets.

2 calls to _imagefield_tokens_support_list()
imagefield_tokens_filefield_paths_process_file in ./imagefield_tokens.module
Implementation of hook_filefield_paths_process_file().
imagefield_tokens_form_alter in ./imagefield_tokens.module
Implementation of hook_form_alter().

File

./imagefield_tokens.module, line 10

Code

function _imagefield_tokens_support_list() {
  return array(
    'image_fupload_imagefield',
    'imagefield',
    'imagefield_crop',
  );
}