function ckeditor_swf_wysiwyg_plugin in CKEditor SWF - Enhanced Flash embedding plugin 6.2
Same name and namespace in other branches
- 7 ckeditor_swf.module \ckeditor_swf_wysiwyg_plugin()
Implementation of hook_wysiwyg_plugin().
File
- ./
ckeditor_swf.module, line 449 - Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr
Code
function ckeditor_swf_wysiwyg_plugin($editor, $version) {
if ($editor == 'ckeditor') {
return array(
'swf' => array(
'path' => drupal_get_path('module', 'ckeditor_swf') . '/plugins/swf/',
'load' => TRUE,
'extensions' => array(
'Flash' => t('CKEditor SWF'),
),
),
);
}
}