You are here

function gmap_macro_builder_permission in GMap Module 7.2

Same name and namespace in other branches
  1. 7 gmap_macro_builder.module \gmap_macro_builder_permission()

Implements hook_perm().

File

./gmap_macro_builder.module, line 23
GMap Macro Builder

Code

function gmap_macro_builder_permission() {
  return array(
    'create gmap macro' => array(
      'title' => t('Create gmap macro'),
      'description' => t('Allows user to create a gmap macro for insertion into content.'),
    ),
  );
}