function node_gallery_perm in Node Gallery 6.3
Same name and namespace in other branches
- 6 node_gallery.module \node_gallery_perm()
- 6.2 node_gallery.module \node_gallery_perm()
Implements hook_perm().
File
- ./node_gallery.module, line 55 
- Node gallery module file.
Code
function node_gallery_perm() {
  // If we use the constants, translation template extractor complains
  return array(
    'administer node gallery',
    'view node gallery',
    'upload to all galleries',
  );
}