function pasteformat_ckeditor_plugin in Paste Format (filter, clean-up pasted text) 7
Same name and namespace in other branches
- 6 pasteformat.module \pasteformat_ckeditor_plugin()
Implements hook_ckeditor_plugin().
File
- ./
pasteformat.module, line 61 - Main file for Paste Format module.
Code
function pasteformat_ckeditor_plugin() {
return array(
'pasteformat' => array(
'name' => 'pasteformat',
'desc' => t('Paste Format: Plugin to cleanup pasted text'),
'path' => drupal_get_path('module', 'pasteformat') . '/plugins/pasteformat/',
),
);
}