You are here

function hook_filefield_paths_process_file in File (Field) Paths 8

Same name and namespace in other branches
  1. 7 filefield_paths.api.php \hook_filefield_paths_process_file()

Process the uploaded files.

Parameters

$type: The entity type containing the files for processing.

$entity: The entity containing the files for processing.

$field: The definition of the field containing the files for processing.

$instance: The instance of the field containing the files for processing.

$langcode: The language code of the field containing the files for processing.

$items: A pass-by-reference array of all the files for processing.

See also

filefield_paths_filefield_paths_process_file()

1 function implements hook_filefield_paths_process_file()

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

filefield_paths_filefield_paths_process_file in ./filefield_paths.inc
Implements hook_filefield_paths_process_file().
1 invocation of hook_filefield_paths_process_file()
filefield_paths_entity_update in ./filefield_paths.module
Implements hook_entity_update().

File

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

Code

function hook_filefield_paths_process_file($type, $entity, $field, $instance, $langcode, &$items) {
}