You are here

function emaudio_custom_url_settings in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emaudio/providers/custom_url.inc \emaudio_custom_url_settings()

File

contrib/emaudio/providers/custom_url.inc, line 37
This is an include file used by emfield.module.

Code

function emaudio_custom_url_settings() {
  $form = array();
  $form['emaudio_custom_url_supported_types'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Supported Types'),
    '#options' => _emaudio_custom_url_default_types(),
    '#default_value' => _emaudio_custom_url_supported_types(),
    '#description' => t('Select the audio types you wish to support. When a custom url with that type is entered into an embedded audio field, it will be parsed and displayed appropriately. If a type is not supported, then it will be ignored.'),
  );
  return $form;
}