You are here

function fieldset_helper_perm in Fieldset helper 6

Same name and namespace in other branches
  1. 6.2 fieldset_helper.module \fieldset_helper_perm()

Implementation of hook_perm().

File

./fieldset_helper.module, line 65
Saves the collapsed state of a Drupal collapsible fieldset.

Code

function fieldset_helper_perm() {
  return array(
    'save fieldset state',
    'administer fieldset state',
  );
}