function ckeditor_swf_params in CKEditor SWF - Enhanced Flash embedding plugin 6.2
Same name and namespace in other branches
- 6 ckeditor_swf.module \ckeditor_swf_params()
- 7 ckeditor_swf.module \ckeditor_swf_params()
1 call to ckeditor_swf_params()
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;
}