You are here

function google_map_field_permission in Google Map Field 7.2

Implements hook_permission().

File

./google_map_field.module, line 25
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_permission() {
  return array(
    'access google map config' => array(
      'title' => t('Access Google Map API Key'),
      'description' => t('Allow access to define/edit the Google Map API key for the Google Map Field module.'),
    ),
  );
}