You are here

function advanced_forum_permission in Advanced Forum 7.2

Implementation of hook_perm().

File

./advanced_forum.module, line 11
Enables the look and feel of other popular forum software.

Code

function advanced_forum_permission() {
  return array(
    'administer advanced forum' => array(
      'title' => t('Administer Advanced Forum'),
    ),
    'view forum statistics' => array(
      'title' => t('View Advanced Forum statistics'),
    ),
    'view last edited notice' => array(
      'title' => t('View last edited notice'),
    ),
  );
}