You are here

function rotor_perm in Rotor Banner 7

Same name and namespace in other branches
  1. 5.7 rotor.module \rotor_perm()
  2. 5 rotor.module \rotor_perm()
  3. 6.2 rotor.module \rotor_perm()
  4. 6 rotor.module \rotor_perm()

Implementation of hook_perm().

File

./rotor.module, line 36
A rotor banner consists in a set of images that will be changing. This module is made using jquery.

Code

function rotor_perm() {
  return array(
    'create rotor item',
    'edit any rotor item',
    'edit own rotor item',
    'delete any rotor item',
    'delete own rotor item',
  );
}