You are here

function emaudio_zzz_custom_url_info in Embedded Media Field 5

File

contrib/emaudio/providers/zzz_custom_url.inc, line 7

Code

function emaudio_zzz_custom_url_info() {
  $name = t('Custom URL');
  $features = array(
    array(
      t('Thumbnails'),
      t('No'),
      '',
    ),
    array(
      t('Autoplay'),
      t('No'),
      '',
    ),
    array(
      t('RSS attachment'),
      t('Yes'),
      '',
    ),
  );
  return array(
    'provider' => 'zzz_custom_url',
    'name' => $name,
    'url' => '',
    'settings_description' => t('These settings specifically affect audio media displayed from custom URL\'s. When a field uses a URL it determines to be a link directly to an audio file, it will embed that file into the content.'),
    'supported_features' => $features,
    'weight' => 9,
  );
}