You are here

function _filefield_paths_include_string_transforms_filefield_paths_field_postprocess in File (Field) Paths 6.2

File

includes/string_transforms.inc, line 12

Code

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