You are here

function video_cck_bliptv_settings in Embedded Media Field 5

File

contrib/video_cck/providers/bliptv.inc, line 21

Code

function video_cck_bliptv_settings() {
  $tags = array(
    'none' => t('No video'),
    'flv' => t('Flash Video'),
    'override' => t('Override tag'),
    'web' => t('Web'),
    'Web High Resolution' => t('Web High Resolution'),
    'Portable (iPod)' => t('Portable (iPod)'),
    'Portable (other)' => t('Portable (other)'),
    'Television' => t('Television'),
    'HDTV' => t('HDTV'),
    'Cell Phone' => t('Cell Phone'),
    'Source' => t('Source'),
  );
  $formats = array(
    'none' => t('No video'),
    'flv' => t('Flash video (flv)'),
    'mov' => t('Quicktime Movie (mov)'),
    'mp3' => t('MP3'),
    'm4a' => t('m4a'),
    'mpg' => t('MPEG'),
    'mp4' => t('mp4'),
    'm4v' => t('m4v'),
    'wmv' => t('Windows Media (wmv)'),
  );
  $form = array();
  $form['video_formats'] = array(
    '#type' => 'fieldset',
    '#title' => t('Video formats'),
    '#description' => t("Blip.TV allows users to upload videos of various formats, sizes, and qualities. These options will allow the administrator to choose the default video formats to display. Blip.TV uses 'tags' to determine this, such as 'Web' for a standard web resolution, and 'HDTV' for a high definition. If you select a tag, then the video format provided by Blip.TV for that tag will be displayed. If you select 'Override tag', then you may specify that the first available video of the given format will be displayed instead, which may or may not have your desired resolution. If a tag or format is not available for a specific video, the module will display the Flash video format instead, which is always present."),
    '#collapsible' => true,
    '#collapsed' => false,
  );
  $form['video_formats']['rss'] = array(
    '#type' => 'fieldset',
    '#title' => t('RSS'),
    '#description' => t("This will determine the preferred video format for RSS feeds."),
    '#collapsible' => true,
    '#collapsed' => true,
  );
  $form['video_formats']['rss']['video_cck_bliptv_rss_tag'] = array(
    '#type' => 'select',
    '#title' => t('RSS full page tag'),
    '#description' => t("When RSS feeds are displayed, and this tag is available for a video, then the clip for that tag will be displayed as an enclosure tag in the feed. Select 'Override tag' if you wish to control the format displayed. Select 'No video' if you do not wish a video to be displayed in RSS feeds."),
    '#options' => $tags,
    '#default_value' => variable_get('video_cck_bliptv_rss_tag', array(
      VIDEO_CCK_BLIPTV_DEFAULT_RSS_TYPE => VIDEO_CCK_BLIPTV_DEFAULT_RSS_TYPE,
    )),
  );
  $form['video_formats']['rss']['video_cck_bliptv_rss_format'] = array(
    '#type' => 'select',
    '#title' => t('RSS full page format override'),
    '#description' => t("When RSS feeds are displayed, and the 'Override tag' option is selected above, then this format will be displayed as an enclosure tag in the feed."),
    '#options' => $formats,
    '#default_value' => variable_get('video_cck_bliptv_rss_format', array(
      VIDEO_CCK_BLIPTV_DEFAULT_RSS_TYPE => VIDEO_CCK_BLIPTV_DEFAULT_RSS_TYPE,
    )),
  );
  return $form;
}