function mee_field_info in Scald: Media Management made easy 6
Implementation of hook_field_info().
File
- mee/
mee.module, line 48 - Defines a special textarea, with drag and drop media driven by Scald and dnd.module when rich text editing is enabled on the textarea via the WYSIWYG API.
Code
function mee_field_info() {
return array(
'multimedia_editorial_element' => array(
'label' => t('Multimedia Editorial Element (MEE)'),
'description' => t('MEE combines Scald, WYSIWYG, and DnD to create a multimedia enabled text field.'),
),
);
}