You are here

function fasttoggle_perm in Fasttoggle 5

Same name and namespace in other branches
  1. 6 fasttoggle.module \fasttoggle_perm()

Implementation of hook_perm().

File

./fasttoggle.module, line 89
Enables fast toggling of binary or not so binary settings

Code

function fasttoggle_perm() {
  return array(
    'promote posts',
    'make posts sticky',
    'moderate posts',
    'moderate users',
    'moderate comments',
    'administer fasttoggle',
  );
}