You are here

function emvideo_guba_info in Embedded Media Field 6.3

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

File

contrib/emvideo/providers/guba.inc, line 9
Provide support for the Guba provider to the emfield.module.

Code

function emvideo_guba_info() {
  $features = array(
    array(
      t('Autoplay'),
      t('Yes'),
      '',
    ),
    array(
      t('RSS Attachment'),
      t('No'),
      '',
    ),
    array(
      t('Thumbnails'),
      t('Yes'),
      t(''),
    ),
  );
  return array(
    'provider' => 'guba',
    'name' => t('GUBA'),
    'url' => EMVIDEO_GUBA_MAIN_URL,
    'settings_description' => t('These settings specifically affect videos displayed from <a href="@guba" target="_blank">GUBA</a>.', array(
      '@guba' => EMVIDEO_GUBA_MAIN_URL,
    )),
    'supported_features' => $features,
  );
}