You are here

function macro_perm in Macro 7

Same name and namespace in other branches
  1. 6 macro.module \macro_perm()

Implementation of hook_perm().

File

./macro.module, line 29
allow administrators to record (export) form submissions allow administrators to replay (import) form submissions

Code

function macro_perm() {
  return array(
    'administer macro settings',
    'macro access',
  );
}