You are here

function google_map_field_filter_info in Google Map Field 7

Implements hook_filter_info().

File

./google_map_field.module, line 271
This file defines all the necessary hooks and functions to create a Google Map Field field type and also a WYSIWYG editor plugin for inserting maps directly into filtered content.

Code

function google_map_field_filter_info() {
  $filters['google_map_field_token'] = array(
    'title' => t('Google Map Field'),
    'description' => t('Use tokens to insert Google Map Fields.'),
    'process callback' => 'google_map_field_filter_process',
    'cache' => FALSE,
  );
  return $filters;
}