You are here

function hook_filefield_paths_field_type_info in File (Field) Paths 7

Declare a compatible field type for use with File (Field) Paths.

Return value

array

3 functions implement hook_filefield_paths_field_type_info()

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

file_filefield_paths_field_type_info in modules/file.inc
Implements hook_filefield_paths_field_type_info() on behalf of file.module.
image_filefield_paths_field_type_info in modules/image.inc
Implements hook_filefield_paths_field_type_info() on behalf of image.module.
video_filefield_paths_field_type_info in modules/video.inc
Implements hook_filefield_paths_field_type_info() on behalf of video.module.
1 invocation of hook_filefield_paths_field_type_info()
_filefield_paths_get_field_types in ./filefield_paths.module
Provides a list of all available field types for use with File (Field) Paths.

File

./filefield_paths.api.php, line 48
Hooks provided by the File (Field) Paths module.

Code

function hook_filefield_paths_field_type_info() {
  return array(
    'file',
  );
}