You are here

function emvideo_google_info in Embedded Media Field 6.3

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

File

contrib/emvideo/providers/google.inc, line 13
This include processes Google.com media files for use by emfield.module

Code

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