You are here

function emvideo_emfield_info in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emvideo/emvideo.module \emvideo_emfield_info()
  2. 6.2 contrib/emvideo/emvideo.module \emvideo_emfield_info()

Implementation of hook_emfield_info().

File

contrib/emvideo/emvideo.module, line 38
Embedded Video module is a handler for 3rd party video files.

Code

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