function wysiwyg_wysiwyg_plugin in Wysiwyg 6
Same name and namespace in other branches
- 5 wysiwyg.plugins.inc \wysiwyg_wysiwyg_plugin()
 
Implementation of hook_wysiwyg_plugin().
File
- ./
wysiwyg.plugins.inc, line 7  
Code
function wysiwyg_wysiwyg_plugin($editor, $version) {
  switch ($editor) {
    case 'tinymce':
      if ($version < 3) {
        return array(
          'wysiwyg' => array(
            'path' => drupal_get_path('module', 'wysiwyg') . '/plugins/break/editor_plugin.js',
            'buttons' => array(
              'break' => t('Teaser break'),
            ),
            'url' => 'http://drupal.org/project/wysiwyg',
          ),
        );
      }
      break;
  }
}