You are here

function better_formats_perm in Better Formats 6

Same name and namespace in other branches
  1. 6.2 better_formats.module \better_formats_perm()

Implementation of hook_perm().

File

./better_formats.module, line 29
Enhances Drupal's core input format settings.

Code

function better_formats_perm() {
  return array(
    'show format selection for nodes',
    'show format selection for comments',
    'show format selection for blocks',
    'show format tips',
    'show more format tips link',
    'collapse format fieldset by default',
    'collapsible format selection',
  );
}