You are here

function ckeditor_swf_params in CKEditor SWF - Enhanced Flash embedding plugin 6.2

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

File

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

Code

function ckeditor_swf_params($params) {
  $output = '';
  foreach ($params as $name => $value) {
    $output .= '<param name="' . $name . '" value="' . check_plain($value) . '" />' . "\n";
  }
  return $output;
}