You are here

function filefield_paths_filefield_paths_file_postprocess in File (Field) Paths 6.2

Implements hook_filefield_paths_file_postprocess().

File

modules/filefield_paths.inc, line 93
FileField Paths module integration.

Code

function filefield_paths_filefield_paths_file_postprocess($source, $file, $node, $settings) {
  foreach (_filefield_paths_includes() as $include) {
    if (function_exists($function = "_filefield_paths_include_{$include}_filefield_paths_file_postprocess")) {
      $function($source, $file, &$node, $settings);
    }
  }
}