You are here

function gmap_filter_info in GMap Module 7

Same name and namespace in other branches
  1. 7.2 gmap.module \gmap_filter_info()

Implement hook_filter_info().

File

./gmap.module, line 513
GMap -- Routines to use the Google Maps API in Drupal.

Code

function gmap_filter_info() {
  $filters['gmap_macro'] = array(
    'title' => t('GMap Macro expander'),
    'description' => t('GMap macros will be displayed as interactive maps.'),
    'process callback' => '_gmap_filter_process',
    'tips callback' => '_gmap_filter_tips',
    'cache' => FALSE,
  );
  return $filters;
}