function emfield_field_info in Embedded Media Field 6.3
Implementation of hook_field_info().
File
- ./
emfield.module, line 45 - Embedded Media Field is a CCK-based framework for embedding media files.
Code
function emfield_field_info() {
$fields = array(
'emfield' => array(
'label' => t('Embedded media'),
'description' => t('Automatically parse and display embedded media from its URL or embed code.'),
'callbacks' => array(
'tables' => CONTENT_CALLBACK_DEFAULT,
'arguments' => CONTENT_CALLBACK_DEFAULT,
),
),
);
return $fields;
}