You are here

function emvideo_imeem_info in Embedded Media Field 6

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

File

contrib/emvideo/providers/imeem.inc, line 8

Code

function emvideo_imeem_info() {
  $features = array(
    array(
      t('Autoplay'),
      t('Yes'),
      '',
    ),
    array(
      t('RSS Attachment'),
      t('No'),
      '',
    ),
    array(
      t('Show related videos'),
      t('No'),
      t('This is embedded in the video itself when enabled; currently not available with other providers. Set the feature above.'),
    ),
    array(
      t('Thumbnails'),
      t('Yes'),
      t('May not currently resize thumbnails. Must have an API key for thumbnails at the moment, although research is underway to determine an alternative to this. Set your API key above.'),
    ),
  );
  return array(
    'provider' => 'imeem',
    'name' => t('IMEEM'),
    'url' => EMVIDEO_IMEEM_MAIN_URL,
    'settings_description' => t('These settings specifically affect videos displayed from <a href="@imeem" target="_blank">IMEEM</a>. You can learn more about its <a href="@api" target="_blank">API</a> here.', array(
      '@imeem' => EMVIDEO_IMEEM_MAIN_URL,
      '@api' => EMVIDEO_IMEEM_API_INFO,
    )),
    'supported_features' => $features,
  );
}