You are here

function video_image_perm in Video 6.2

Same name and namespace in other branches
  1. 5 plugins/video_image/video_image.module \video_image_perm()
  2. 6 plugins/video_image/video_image.module \video_image_perm()
1 call to video_image_perm()
video_image_form_alter in plugins/video_image/video_image.module
Implementation of hook_form_alter()

File

plugins/video_image/video_image.module, line 53
Enable image support for video module.

Code

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