function contact_permissions_permission in Contact Permissions 7
Implements hook_permission().
File
- ./
contact_permissions.module, line 11 - Provides permissions for having a personal contact form
Code
function contact_permissions_permission() {
return array(
'have a personal contact form' => array(
'title' => t('Have a personal contact form'),
'description' => t('Allow users to have a personal contact form based in their permissions.'),
),
);
}