You are here

function filefield_paths_filefield_paths_field_postprocess in File (Field) Paths 6.2

Implements hook_filefield_paths_field_postprocess().

File

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

Code

function filefield_paths_filefield_paths_field_postprocess($value, $field, $settings) {
  foreach (_filefield_paths_includes() as $include) {
    if (function_exists($function = "_filefield_paths_include_{$include}_filefield_paths_field_postprocess")) {
      $function(&$value, $field, $settings);
    }
  }
}