You are here

function video_field_widget_settings_form in Video 7

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

Implements hook_field_widget_settings_form().

File

./video.field.inc, line 277
Implement an 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.
  $form = file_field_widget_settings_form($field, $instance);
  return $form;
}