function taxonomy_image_perm in Taxonomy Image 6
Same name and namespace in other branches
- 5 taxonomy_image.module \taxonomy_image_perm()
Implementation of hook_perm.
File
- ./
taxonomy_image.module, line 303 - 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',
);
}