You are here

function hook_filefield_paths_field_tokens in File (Field) Paths 6.2

Add support for your modules 'field' tokens to FileField Paths.

Return value

No return necessary, implementation of this hook is all that is required.

1 function implements hook_filefield_paths_field_tokens()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

filefield_filefield_paths_field_tokens in modules/filefield.inc
Implements hook_filefield_paths_tokens().
2 invocations of hook_filefield_paths_field_tokens()
filefield_paths_token_list in modules/token.inc
Implements hook_token_list().
filefield_paths_token_values in modules/token.inc
Implements hook_token_values().

File

./filefield_paths.api.php, line 34
Hooks provided by the FileField Paths module.

Code

function hook_filefield_paths_field_tokens() {
  return TRUE;
}