function getlocations_element_path in Get Locations 7
Same name and namespace in other branches
- 6.2 getlocations.module \getlocations_element_path()
- 6 getlocations.module \getlocations_element_path()
- 7.2 getlocations.module \getlocations_element_path()
Function
Return value
Returns form element
6 calls to getlocations_element_path()
- getlocations_fields_settings_form in modules/
getlocations_fields/ getlocations_fields.admin.inc - Function to display the getlocations admin settings form
- getlocations_gps_settings_form in modules/
getlocations_gps/ getlocations_gps.module - Function to display the getlocations_gps admin settings form
- getlocations_leaflet_settings_form in modules/
getlocations_leaflet/ getlocations_leaflet.module - Function
- getlocations_mapquest_settings_form in modules/
getlocations_mapquest/ getlocations_mapquest.module - Function
- getlocations_search_settings_form in modules/
getlocations_search/ getlocations_search.admin.inc - Function to display the getlocations_search admin settings form
File
- ./
getlocations.module, line 3645 - getlocations.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_element_path($title, $default, $size, $maxlength, $description) {
$element = getlocations_element_map_tf($title, $default, $description, $size, $maxlength, TRUE);
return $element;
}