function faq_perm in Frequently Asked Questions 6
Same name and namespace in other branches
- 5.2 faq.module \faq_perm()
- 5 faq.module \faq_perm()
Implements hook_perm().
File
- ./
faq.module, line 29 - The FAQ module allows users to create a FAQ page, with questions and answers displayed in different styles, according to the settings.
Code
function faq_perm() {
return array(
'administer faq',
'view faq page',
'edit own faq',
'edit faq',
'create faq',
'administer faq order',
'delete faq content',
'delete own faq content',
);
}