function image_perm in Image 6
Same name and namespace in other branches
- 5.2 image.module \image_perm()
- 5 image.module \image_perm()
- 7 image_legacy.module \image_perm()
Implementation of hook_perm
File
- ./
image.module, line 82
Code
function image_perm() {
return array(
'view original images',
'create images',
'edit own images',
'edit any images',
'delete own images',
'delete any images',
);
}