function mee_widget_info in Scald: Media Management made easy 6
Implementation of hook_widget_info().
File
- mee/
mee.module, line 329 - 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_widget_info() {
return array(
'mee_textarea' => array(
'label' => t('MEE Textarea'),
'field types' => array(
'multimedia_editorial_element',
),
'multiple values' => CONTENT_HANDLE_CORE,
),
);
}