function addressfield_staticmap_permission in Address Field Static Map 7
Implements hook_permission().
File
- ./
addressfield_staticmap.module, line 13 - Main file for the addressfield static map module.
Code
function addressfield_staticmap_permission() {
return array(
'administer addressfield staticmap' => array(
'title' => t('Administer Address Field Static Map'),
'description' => t('Change Google Static Map and other settings for this block.'),
),
);
}