function emvideo_zzz_custom_url_info in Embedded Media Field 6
Same name and namespace in other branches
- 6.3 contrib/emvideo/providers/zzz_custom_url.inc \emvideo_zzz_custom_url_info()
File
- contrib/
emvideo/ providers/ zzz_custom_url.inc, line 12 - This is an include file used by emfield.module.
Code
function emvideo_zzz_custom_url_info() {
$name = t('Custom URL');
$features = array(
array(
t('Thumbnails'),
t('No'),
'',
),
array(
t('Autoplay'),
t('Yes'),
'',
),
array(
t('RSS attachment'),
t('No'),
'',
),
);
return array(
'provider' => 'zzz_custom_url',
'name' => $name,
'url' => '',
'settings_description' => t('These settings specifically affect videos displayed from custom URLs. When a field uses a URL it determines to be a link directly to a video file, it will embed that file into the content.'),
'supported_features' => $features,
'weight' => 9,
);
}