You are here

function video_field_widget_settings_form in Video 7.2

Same name and namespace in other branches
  1. 7 video.field.inc \video_field_widget_settings_form()

Implements hook_field_widget_settings_form().

File

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

Code

function video_field_widget_settings_form($field, $instance) {

  // Use the file widget settings form.
  return file_field_widget_settings_form($field, $instance);
}