You are here

function hook_filefield_paths_field_postprocess in File (Field) Paths 6.2

4 functions implement hook_filefield_paths_field_postprocess()

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

ctools_filefield_paths_field_postprocess in modules/ctools.inc
Implements hook_filefield_paths_field_postprocess().
filefield_paths_filefield_paths_field_postprocess in modules/filefield_paths.inc
Implements hook_filefield_paths_field_postprocess().
pathauto_filefield_paths_field_postprocess in modules/pathauto.inc
Implements hook_filefield_paths_field_postprocess().
transliteration_filefield_paths_field_postprocess in modules/transliteration.inc
Implements hook_filefield_paths_field_postprocess().
1 invocation of hook_filefield_paths_field_postprocess()
filefield_paths_process_file in ./filefield_paths.module
Process FileField Paths settings, rename and move files.

File

./filefield_paths.api.php, line 22
Hooks provided by the FileField Paths module.

Code

function hook_filefield_paths_field_postprocess($value, $field, $settings) {
  if ($settings['strtolower']) {
    $value = drupal_strtolower($value);
  }
}