function video_cck_google_settings in Embedded Media Field 5
File
- contrib/
video_cck/ providers/ google.inc, line 23
Code
function video_cck_google_settings() {
$form = array();
$form['video_cck_google_domain'] = array(
'#type' => 'textfield',
'#title' => t('Google video domain'),
'#default_value' => variable_get('video_cck_google_domain', VIDEO_CCK_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;
}