You are here

function legal_perm in Legal 6.8

Same name and namespace in other branches
  1. 5 legal.module \legal_perm()
  2. 6.7 legal.module \legal_perm()

Implementation of hook_perm().

File

./legal.module, line 32
Displays Terms & Conditions, and makes sure they are accepted before registration is accepted.

Code

function legal_perm() {
  return array(
    'administer Terms and Conditions',
    'view Terms and Conditions',
  );
}