You are here

function mee_ckeditor_filter_xss_allowed_tags in Scald: Media Management made easy 7

Implements hook_ckeditor_filter_xss_allowed_tags().

File

modules/fields/mee/mee.module, line 594
Defines a special textarea, with drag and drop media driven by Scald and dnd.module.

Code

function mee_ckeditor_filter_xss_allowed_tags() {

  // The comment "tag" is used to mark parseable atom. It is currently required
  // for the dnd plugin to work. Add it to the CKEditor XSS allowed tags.
  return array(
    '!--',
  );
}