function rotor_perm in Rotor Banner 7
Same name and namespace in other branches
- 5.7 rotor.module \rotor_perm()
 - 5 rotor.module \rotor_perm()
 - 6.2 rotor.module \rotor_perm()
 - 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',
  );
}