function theme_mee_formatter_short in Scald: Media Management made easy 6
Theme function for 'short' text field formatter.
File
- mee/
mee.module, line 317 - 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 theme_mee_formatter_short($element) {
$value = $element['#item']['short'];
return empty($value) ? $value : check_markup($value);
}