function theme_mee_formatter_plain in Scald: Media Management made easy 6
Theme function for 'plain' text field formatter.
File
- mee/
mee.module, line 310 - 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_plain($element) {
return strip_tags(scald_sas_to_rendered($element['#item']['safe'], 'title', TRUE));
}