You are here

function getlocations_lidinfo in Get Locations 7

Same name and namespace in other branches
  1. 6.2 getlocations.module \getlocations_lidinfo()
  2. 6 getlocations.module \getlocations_lidinfo()
  3. 7.2 getlocations.module \getlocations_lidinfo()

Ajax callback Provides a link

See also

theme_getlocations_lidinfo()

1 string reference to 'getlocations_lidinfo'
getlocations_menu in ./getlocations.module
Implements hook_menu().

File

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

Code

function getlocations_lidinfo() {
  $lid = $_GET['lid'];
  $lidkey = $_GET['key'];
  $content = getlocations_getlidinfo($lid, $lidkey);
  drupal_json_output(array(
    'content' => $content,
  ));
}