You are here

function pasteformat_ckeditor_plugin in Paste Format (filter, clean-up pasted text) 6

Same name and namespace in other branches
  1. 7 pasteformat.module \pasteformat_ckeditor_plugin()

Implements hook_ckeditor_plugin().

File

./pasteformat.module, line 49

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/',
    ),
  );
}