You are here

function file_field_diff_default_options in Diff 7.3

Provide default field comparison options.

File

includes/file.inc, line 81
Provide diff field functions for the file module.

Code

function file_field_diff_default_options($field_type) {
  return array(
    'show_id' => 0,
    'compare_display_field' => 0,
    'compare_description_field' => 0,
    'property_separator' => '; ',
  );
}