You are here

function background_video_settings_form_submit in Background Video 7

Submit Handler for the configuration form.

1 string reference to 'background_video_settings_form_submit'
background_video_settings_form in ./background_video.admin.inc
Implements hook_form().

File

./background_video.admin.inc, line 84
This file provides the configuration form for the Background Video module.

Code

function background_video_settings_form_submit($form, &$form_state) {
  _background_video_file_save('mp4', $form_state);
  _background_video_file_save('ogv', $form_state);
  _background_video_file_save('webm', $form_state);
  _background_video_file_save('poster', $form_state);
}