function ckeditor_swf_elements in CKEditor SWF - Enhanced Flash embedding plugin 6
Same name and namespace in other branches
- 6.2 ckeditor_swf.module \ckeditor_swf_elements()
Implementation of hook_elements().
File
- ./
ckeditor_swf.module, line 37 - 24.01.2010 Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr
Code
function ckeditor_swf_elements() {
$type = array();
if (user_access('access ckeditor')) {
$type['textarea'] = array(
'#process' => array(
'ckeditor_swf_process_textarea',
),
);
}
return $type;
}