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