You are here

function location_unimplemented_form in Location 7.4

1 string reference to 'location_unimplemented_form'
location_menu in ./location.module
Implements hook_menu().

File

./location.module, line 1932
Location module main routines. An implementation of a universal API for location manipulation. Provides functions for postal_code proximity searching, deep-linking into online mapping services. Currently, some options are configured through an…

Code

function location_unimplemented_form($form, &$form_state, $arg = array()) {
  $form['about'] = array(
    '#type' => 'markup',
    '#markup' => '<h1>TODO: implement this.</h1>',
  );
  $form['data'] = array(
    '#type' => 'markup',
    '#markup' => check_plain(print_r($arg, TRUE)),
  );
  return $form;
}