You are here

function video_cck_spike_info in Embedded Media Field 5

File

contrib/video_cck/providers/spike.inc, line 5

Code

function video_cck_spike_info() {
  $name = t('Spike TV');
  $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' => $name,
    'url' => VIDEO_CCK_SPIKE_MAIN_URL,
    'settings_description' => t('These settings specifically affect videos displayed from !spike.', array(
      '!spike' => l($name, VIDEO_CCK_SPIKE_MAIN_URL, array(
        'target' => '_blank',
      )),
    )),
    'supported_features' => $features,
  );
}