You are here

function video_image_perm in Video 6

Same name and namespace in other branches
  1. 5 plugins/video_image/video_image.module \video_image_perm()
  2. 6.2 plugins/video_image/video_image.module \video_image_perm()

Implementation of hook_perm

File

plugins/video_image/video_image.module, line 45
video_image.module

Code

function video_image_perm() {
  $array = array(
    'override autothumbnailing using uploaded image',
  );
  return $array;
}