You are here

function getlocations_getlidinfo in Get Locations 7

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

Parameters

int $lid location id:

string entity id:

Return value

string path

8 calls to getlocations_getlidinfo()
getlocations_js_settings_do in ./getlocations.module
Function sets up javascript settings
getlocations_leaflet_entity_type_map in modules/getlocations_leaflet/getlocations_leaflet.module
Function
getlocations_leaflet_field_formatter_view in modules/getlocations_leaflet/getlocations_leaflet.module
Implements hook_field_formatter_view(). Build a renderable array for a field value.
getlocations_lidinfo in ./getlocations.module
Ajax callback Provides a link
getlocations_mapquest_entity_type_map in modules/getlocations_mapquest/getlocations_mapquest.module
Function

... See full list

File

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

Code

function getlocations_getlidinfo($lid, $lidkey) {
  $content = theme('getlocations_lidinfo', array(
    'lid' => $lid,
    'lidkey' => $lidkey,
  ));
  return $content;
}