You are here

function emvideo_vimeo_settings in Media: Vimeo 6

hook emvideo_PROVIDER_settings this should return a subform to be added to the emvideo_settings() admin settings page. note that a form field will already be provided, at $form['PROVIDER'] (such as $form['vimeo']) so if you want specific provider settings within that field, you can add the elements to that form field.

File

includes/providers/emvideo/vimeo.inc, line 41
media_vimeo/includes/providers/vimeo.inc Provide support for the Vimeo provider to the emfield.module.

Code

function emvideo_vimeo_settings() {
  module_load_include('inc', 'media_vimeo', 'includes/media_vimeo.admin');
  return media_vimeo_admin_form();
}