You are here

function video_cck_revver_info in Embedded Media Field 5

File

contrib/video_cck/providers/revver.inc, line 6

Code

function video_cck_revver_info() {
  $name = t('Revver');
  $features = array(
    array(
      t('Affliate program'),
      t('Yes'),
      t('Not currently supported by other providers. Set affiliate ID above.'),
    ),
    array(
      t('Autoplay'),
      t('Yes'),
      '',
    ),
    array(
      t('RSS Attachment'),
      t('No'),
      '',
    ),
    array(
      t('Thumbnails'),
      t('Yes'),
      t('May not currently resize thumbnails, but this will be easy to add. Meanwhile, you can override theme_video_cck_revver_thumbnail if you have a pressing need for this and know how to theme.'),
    ),
  );
  return array(
    'provider' => 'revver',
    'name' => $name,
    'url' => VIDEO_CCK_REVVER_MAIN_URL,
    'settings_description' => t('These settings specifically affect videos displayed from !provider.', array(
      '!provider' => l($name, VIDEO_CCK_REVVER_MAIN_URL, array(
        'target' => '_blank',
      )),
    )),
    'supported_features' => $features,
  );
}