You are here

function regcode_perm in Registration codes 5.3

Same name and namespace in other branches
  1. 5 regcode.module \regcode_perm()
  2. 6.2 regcode.module \regcode_perm()
  3. 6 regcode.module \regcode_perm()

Set valid permissions for this module.

Return value

An array of valid permissions for the module.

File

./regcode.module, line 63
The main module file of the registration code module

Code

function regcode_perm() {
  return array(
    'administer registration codes',
    'bypass registration code entry',
  );

  // 'add registration codes', 'change registration codes'
}