You are here

function getlocations_leaflet_awesome_colors_list in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_leaflet/getlocations_leaflet.module \getlocations_leaflet_awesome_colors_list()

Function

Return value

Returns

1 call to getlocations_leaflet_awesome_colors_list()
getlocations_leaflet_awesome_markers_elements_get in modules/getlocations_leaflet/getlocations_leaflet.module
Function

File

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

Code

function getlocations_leaflet_awesome_colors_list() {
  $list = array(
    'red' => t('Red'),
    'darkred' => t('Dark red'),
    'orange' => t('Orange'),
    'green' => t('Green'),
    'darkgreen' => t('Dark green'),
    'blue' => t('Blue'),
    'purple' => t('Purple'),
    'darkpurple' => t('Dark purple'),
    'cadetblue' => t('Cadet blue'),
  );
  return $list;
}