function postal_code_permission in Postal Code 7
Implements hook_permission().
File
- ./
postal_code.module, line 77
Code
function postal_code_permission() {
return array(
'administer postal code' => array(
'title' => t('administer postal code'),
'description' => t('This will allow user to administer postal code module settings'),
),
);
}