function video_image_perm in Video 5
Same name and namespace in other branches
- 6 plugins/video_image/video_image.module \video_image_perm()
- 6.2 plugins/video_image/video_image.module \video_image_perm()
Implementation of hook_perm
File
- plugins/
video_image/ video_image.module, line 45 - Enable image support for video module.
Code
function video_image_perm() {
$array = array(
'override autothumbnailing using uploaded image',
);
return $array;
}