You are here

function emvideo_spike_info in Embedded Media Field 6

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

File

contrib/emvideo/providers/spike.inc, line 10
This include processes Spike media files for use by emfield.module.

Code

function emvideo_spike_info() {
  $features = array(
    array(
      t('Autoplay'),
      t('No'),
      t('In the works...'),
    ),
    array(
      t('RSS Attachment'),
      t('No'),
      '',
    ),
    array(
      t('Thumbnails'),
      t('In the works...'),
      '',
    ),
  );
  return array(
    'provider' => 'spike tv',
    'name' => t('Spike TV'),
    'url' => EMVIDEO_SPIKE_MAIN_URL,
    'settings_description' => t('These settings specifically affect videos displayed from <a href="@spike" target="_blank">Spike TV</a>.', array(
      '@spike' => EMVIDEO_SPIKE_MAIN_URL,
    )),
    'supported_features' => $features,
  );
}