You are here

function taxonomy_image_perm in Taxonomy Image 5

Same name and namespace in other branches
  1. 6 taxonomy_image.module \taxonomy_image_perm()

Implementation of hook_perm.

File

./taxonomy_image.module, line 277
taxonomy_image.module Simple module for providing an association between taxonomy terms and images. Written by Jeremy Andrews <jeremy@kerneltrap.org>, May 2004.

Code

function taxonomy_image_perm() {
  return array(
    'access taxonomy images',
    'administer taxonomy images',
    'can disable taxonomy images',
  );
}