You are here

function imagefield_perm in ImageField 5.2

Implementation of hook_perm().

File

./imagefield.module, line 83
Defines an image field type. imagefield uses content.module to store the fid, and the drupal files table to store the actual file data.

Code

function imagefield_perm() {
  return array(
    'view imagefield uploads',
  );
}