function getlocations_search_permission in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_search/getlocations_search.module \getlocations_search_permission()
Implements hook_permission().
File
- modules/
getlocations_search/ getlocations_search.module, line 29 - getlocations_search.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_search_permission() {
$perms = array();
$perms['access getlocations search'] = array(
'title' => t('Access Getlocations Search'),
'description' => t('View and use the Getlocations_search module.'),
);
return $perms;
}