You are here

function image_field_diff_default_options in Diff 7.3

Provide default field comparison options.

File

includes/image.inc, line 82
Provide diff field functions for the image module.

Code

function image_field_diff_default_options($field_type) {
  return array(
    'show_id' => 0,
    'compare_alt_field' => 0,
    'compare_title_field' => 0,
    'property_separator' => '; ',
  );
}