You are here

function getlocations_fields_get_display_settings_defaults in Get Locations 7

Same name and namespace in other branches
  1. 7.2 modules/getlocations_fields/getlocations_fields.module \getlocations_fields_get_display_settings_defaults()
3 calls to getlocations_fields_get_display_settings_defaults()
getlocations_fields_data_keys in modules/getlocations_fields/getlocations_fields.module
getlocations_fields_get_display_settings in modules/getlocations_fields/getlocations_fields.module
getlocations_map_field_formatter_view in modules/getlocations_map/getlocations_map.module
Implements hook_field_formatter_view(). Build a renderable array for a field value.

File

modules/getlocations_fields/getlocations_fields.module, line 4122
getlocations_fields.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_fields_get_display_settings_defaults() {
  $settings = array(
    'sv_addresscontrol' => 1,
    'sv_addresscontrolposition' => '',
    'sv_pancontrol' => 1,
    'sv_pancontrolposition' => '',
    'sv_zoomcontrol' => 'default',
    'sv_zoomcontrolposition' => '',
    'sv_linkscontrol' => 1,
    'sv_imagedatecontrol' => 0,
    'sv_scrollwheel' => 1,
    'sv_clicktogo' => 1,
  );
  return $settings;
}