You are here

function gm3_filter_menu in Google Maps API V3 7

Implementation of hook_menu().

File

gm3_filter/gm3_filter.module, line 15

Code

function gm3_filter_menu() {
  return array(
    'gm3_filter' => array(
      'title' => 'Google Map filter helper',
      'description' => 'Generate the code required to embed a Google Map within a webpage.',
      'page callback' => 'drupal_get_form',
      'page arguments' => array(
        'gm3_filter_helper_form',
      ),
      'access callback' => 'gm3_filter_helper_form_access',
      'file' => 'gm3_filter.form.inc',
    ),
  );
}