function video_cck_google_info in Embedded Media Field 5
File
- contrib/
video_cck/ providers/ google.inc, line 7
Code
function video_cck_google_info() {
$name = t('Google');
$features = array(
array(
t('Autoplay'),
t('Yes'),
'',
),
array(
t('RSS Attachment'),
t('Yes'),
'',
),
array(
t('Thumbnails'),
t('Yes'),
'',
),
);
return array(
'provider' => 'google',
'name' => $name,
'url' => VIDEO_CCK_GOOGLE_MAIN_URL,
'settings_description' => t('These settings specifically affect videos displayed from !google.', array(
'!google' => l($name, VIDEO_CCK_GOOGLE_MAIN_URL, array(
'target' => '_blank',
)),
)),
'supported_features' => $features,
);
}