You are here

function emvideo_revver_info in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emvideo/providers/revver.inc \emvideo_revver_info()

File

contrib/emvideo/providers/revver.inc, line 11
This include processes revver.com media files for use by emfield.module.

Code

function emvideo_revver_info() {
  $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_emvideo_revver_thumbnail if you have a pressing need for this and know how to theme.'),
    ),
  );
  return array(
    'provider' => 'revver',
    'name' => t('Revver'),
    'url' => EMVIDEO_REVVER_MAIN_URL,
    'settings_description' => t('These settings specifically affect videos displayed from <a href="@provider" target="_blank">Revver</a>.', array(
      '@provider' => EMVIDEO_REVVER_MAIN_URL,
    )),
    'supported_features' => $features,
  );
}