function hook_filefield_paths_process_file in File (Field) Paths 7
Same name and namespace in other branches
- 8 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 modules/
filefield_paths.inc - Implements hook_filefield_paths_process_file().
1 invocation of hook_filefield_paths_process_file()
File
- ./
filefield_paths.api.php, line 70 - Hooks provided by the File (Field) Paths module.
Code
function hook_filefield_paths_process_file($type, $entity, $field, $instance, $langcode, &$items) {
}