You are here

function emvideo_google_settings in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emvideo/providers/google.inc \emvideo_google_settings()

File

contrib/emvideo/providers/google.inc, line 29
This include processes Google.com media files for use by emfield.module

Code

function emvideo_google_settings() {
  $form = array();
  $form['emvideo_google_domain'] = array(
    '#type' => 'textfield',
    '#title' => t('Google video domain'),
    '#default_value' => variable_get('emvideo_google_domain', EMVIDEO_GOOGLE_DOMAIN_DEFAULT),
    '#description' => t('Google hosts their videos on various servers throughout the world. By default, videos from Google will be displayed from the United States, at their google.<b><em>com</em></b> servers. If you wish to display the video from another Google server, please enter the domain here, without the initial dot. For instance, you might enter <b><em>it</em></b> for the Italian Google servers at google.it, or <b><em>ca</em></b> for their Canadian servers.'),
  );
  return $form;
}