function contact_perm in Drupal 6
Same name and namespace in other branches
- 5 modules/contact/contact.module \contact_perm()
Implementation of hook_perm
File
- modules/
contact/ contact.module, line 37 - Enables the use of personal and site-wide contact forms.
Code
function contact_perm() {
return array(
'access site-wide contact form',
'administer site-wide contact form',
);
}