You are here

function emvideo_tudou_settings in Embedded Media Field 6

Same name and namespace in other branches
  1. 6.3 contrib/emvideo/providers/tudou.inc \emvideo_tudou_settings()

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['tudou']) so if you want specific provider settings within that field, you can add the elements to that form field.

File

contrib/emvideo/providers/tudou.inc, line 42
Provide support for the Tudou provider to the emfield.module.

Code

function emvideo_tudou_settings() {
  $form = array();
  return $form;
}