You are here

function image_perm in Image 7

Same name and namespace in other branches
  1. 5.2 image.module \image_perm()
  2. 5 image.module \image_perm()
  3. 6 image.module \image_perm()

Implementation of hook_perm

File

./image_legacy.module, line 33

Code

function image_perm() {
  return array(
    'view original images',
    'create images',
    'edit own images',
    'edit any images',
    'delete own images',
    'delete any images',
  );
}