function getlocations_element_markerclusterer_style in Get Locations 7
Same name and namespace in other branches
- 6.2 getlocations.markercluster.inc \getlocations_element_markerclusterer_style()
- 6 getlocations.markercluster.inc \getlocations_element_markerclusterer_style()
- 7.2 getlocations.markercluster.inc \getlocations_element_markerclusterer_style()
1 call to getlocations_element_markerclusterer_style()
File
- ./
getlocations.markercluster.inc, line 111 - getlocations.markercluster.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_element_markerclusterer_style($default) {
$element = array(
'#type' => 'select',
'#title' => t('Marker Clusterer style'),
'#default_value' => $default,
'#options' => array(
'-1' => t('Default'),
'0' => t('People'),
'1' => t('Conversation'),
'2' => t('Heart'),
),
);
return $element;
}