function getlocations_mapquest_get_marker in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_mapquest/getlocations_mapquest.module \getlocations_mapquest_get_marker()
Function
Return value
Returns
4 calls to getlocations_mapquest_get_marker()
- getlocations_mapquest_entity_type_map in modules/
getlocations_mapquest/ getlocations_mapquest.module - Function
- getlocations_mapquest_field_formatter_view in modules/
getlocations_mapquest/ getlocations_mapquest.module - Implements hook_field_formatter_view(). Build a renderable array for a field value.
- getlocations_mapquest_map_settings_do in modules/
getlocations_mapquest/ getlocations_mapquest.module - Function
- template_preprocess_getlocations_mapquest_view_map in modules/
getlocations_mapquest/ views/ getlocations_mapquest.views.inc - Preprocess function for getlocations_mapquest_view_map.tpl
File
- modules/
getlocations_mapquest/ getlocations_mapquest.module, line 991 - getlocations_mapquest.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_mapquest_get_marker($key) {
$icons = getlocations_mapquest_get_icondata();
if (isset($icons[$key])) {
return $icons[$key];
}
return FALSE;
}