You are here

function getlocations_supported_modules in Get Locations 7

Same name and namespace in other branches
  1. 7.2 getlocations.module \getlocations_supported_modules()

Function

Return value

Returns

3 calls to getlocations_supported_modules()
getlocations_access_location in ./getlocations.module
Access callback: Checks for access permission and if there is a supported locative module installed
getlocations_access_user_location in ./getlocations.module
Access callback: Checks for access permission and if there is a supported locative module installed
getlocations_get_current_supported_module in ./getlocations.module
Function

File

./getlocations.module, line 6598
getlocations.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_supported_modules() {
  return array(
    'getlocations_fields',
    'geofield',
    'geolocation',
    'location_cck',
  );
}