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