You are here

function emvideo_twistage_info in Embedded Media Field 6

Same name and namespace in other branches
  1. 6.3 contrib/emvideo/providers/twistage.inc \emvideo_twistage_info()

Implementation of hook_PROVIDER_info().

File

contrib/emvideo/providers/twistage.inc, line 11
Provide support for Twistage to the emfield.module (http://twistage.com).

Code

function emvideo_twistage_info() {
  $features = array(
    array(
      t('Autoplay'),
      t('Yes'),
      '',
    ),
    array(
      t('RSS Attachment'),
      t('Yes'),
      t('Provides the main asset of the video in the RSS enclosure.'),
    ),
    array(
      t('Show related videos'),
      t('No'),
      '',
    ),
    array(
      t('Thumbnails'),
      t('Yes'),
      t('Allows customized sizing of thumbnail images.'),
    ),
  );
  return array(
    'provider' => 'twistage',
    'name' => t('Twistage'),
    'url' => 'http://www.twistage.com',
    'settings_description' => t('These settings specifically affect videos displayed from <a href="@twistage" target="_blank">Twistage</a>. You can learn more about its <a href="@api" target="_blank">API</a> here.', array(
      '@twistage' => 'http://twistage.com',
      '@api' => 'http://console.twistage.com/doc/api/index',
    )),
    'supported_features' => $features,
  );
}