function getlocations_fields_streetview_settings_allow in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_fields/getlocations_fields.module \getlocations_fields_streetview_settings_allow()
17 calls to getlocations_fields_streetview_settings_allow()
- getlocations_commentmap in ./
getlocations.module - Page callback: Displays a map.
- getlocations_fields_field_widget_form in modules/
getlocations_fields/ getlocations_fields.module - Implements hook_field_widget_form(). Return the form for a single field widget.
- getlocations_fields_plugin_style_streetview::options_form in modules/
getlocations_fields/ views/ getlocations_fields_plugin_style_streetview.inc - Provide a form to edit options for this plugin.
- getlocations_fields_save_locations in modules/
getlocations_fields/ getlocations_fields.module - getlocations_fields_views_pre_render in modules/
getlocations_fields/ views/ getlocations_fields.views.inc - Implements hook_views_pre_render().
File
- modules/
getlocations_fields/ getlocations_fields.module, line 4045 - getlocations_fields.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_fields_streetview_settings_allow() {
$getlocations_fields_defaults = getlocations_fields_defaults();
if ($getlocations_fields_defaults['streetview_settings_allow']) {
return TRUE;
}
return FALSE;
}