You are here

function emaudio_emfield_info in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 5 contrib/emaudio/emaudio.module \emaudio_emfield_info()
  2. 6 contrib/emaudio/emaudio.module \emaudio_emfield_info()
  3. 6.2 contrib/emaudio/emaudio.module \emaudio_emfield_info()

Implement hook_emfield_info

File

contrib/emaudio/emaudio.module, line 27
Embedded Audio module is a handler for mp3 and similar audio files, hosted on 3rd party sites.

Code

function emaudio_emfield_info() {
  $name = t('Embedded Audio Field');
  return array(
    '#name' => $name,
    '#settings_title' => t('Audio'),
    '#settings_description' => t('The following settings configure content with any fields controlled by @name.', array(
      '@name' => $name,
    )),
  );
}