You are here

function google_map_field_help in Google Map Field 7.2

Same name and namespace in other branches
  1. 7 google_map_field.module \google_map_field_help()

Implements hook_help().

File

./google_map_field.module, line 13
This file defines all the necessary hooks and functions to create a Google Map Field field type for inserting maps directly into content items (node, entities etc).

Code

function google_map_field_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#google_map_field':
      $output = t('Add Google Map type fields to content types.');
  }
  return $output;
}