function faq_ask_perm in FAQ_Ask 6.2
Same name and namespace in other branches
- 6 faq_ask.module \faq_ask_perm()
Implementation of hook_perm(). Define the permissions this module uses
File
- ./
faq_ask.module, line 46 - This module is an add-on to the FAQ module that allows users with the 'ask question' permission to create a question which will be queued for an 'expert' to answer.
Code
function faq_ask_perm() {
return array(
'ask question',
'answer question',
);
}