You are here

function gm3_filter_filter_info in Google Maps API V3 7

Implementation of hook_filter_info().

File

gm3_filter/gm3_filter.module, line 105

Code

function gm3_filter_filter_info() {
  return array(
    'gm3_filter_google_map' => array(
      'title' => 'Google Map',
      'description' => 'Embed a Google Map into any formatted text on your site',
      'process callback' => 'gm3_filter_google_map_process',
      'cache' => FALSE,
      'tips callback' => 'gm3_filter_google_map_tips',
      'weight' => 0,
    ),
  );
}