You are here

function ckeditor_swf_attributes in CKEditor SWF - Enhanced Flash embedding plugin 6.2

Same name and namespace in other branches
  1. 6 ckeditor_swf.module \ckeditor_swf_attributes()
  2. 7 ckeditor_swf.module \ckeditor_swf_attributes()
1 call to ckeditor_swf_attributes()
_ckeditor_swf_filter_process in ./ckeditor_swf.module

File

./ckeditor_swf.module, line 290
Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr

Code

function ckeditor_swf_attributes($attributes) {
  $output = '';
  foreach ($attributes as $name => $value) {
    $output .= ' ' . $name . '="' . check_plain($value) . '"';
  }
  return $output;
}