function emvideo_field_info in Embedded Media Field 6
Same name and namespace in other branches
- 6.3 contrib/emvideo/emvideo.module \emvideo_field_info()
- 6.2 contrib/emvideo/emvideo.module \emvideo_field_info()
Implementation of hook_field_info().
File
- contrib/
emvideo/ emvideo.module, line 206 - 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;
}