You are here

function faq_perm in Frequently Asked Questions 5.2

Same name and namespace in other branches
  1. 5 faq.module \faq_perm()
  2. 6 faq.module \faq_perm()

Implementation of hook_perm().

File

./faq.module, line 34
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',
  );
}