You are here

function emvideo_field_info in Embedded Media Field 6.3

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

Implementation of hook_field_info().

File

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

Code

function emvideo_field_info() {
  $fields = array(
    'emvideo' => array(
      'label' => t('Embedded Video'),
      'description' => t('Automatically parse and display a third party video from its URL or embed code.'),
      'callbacks' => array(
        'tables' => CONTENT_CALLBACK_DEFAULT,
        'arguments' => CONTENT_CALLBACK_DEFAULT,
      ),
    ),
  );
  return $fields;
}