You are here

function video_filefield_role_limit_supported_widgets_alter in Video 7.2

Implements hook_filefield_role_limit_supported_widgets_alter().

Add the video field to the list of supported FileField Role Limit widgets.

File

./video.field.inc, line 1277
Implement a video field, based on the file module's file field.

Code

function video_filefield_role_limit_supported_widgets_alter(&$types) {
  $types[] = 'video_upload';
}