function wysiwyg_break_plugin in Wysiwyg 5.2
Same name and namespace in other branches
- 6.2 plugins/break.inc \wysiwyg_break_plugin()
- 7.2 plugins/break.inc \wysiwyg_break_plugin()
Implementation of hook_wysiwyg_plugin().
File
- plugins/
break.inc, line 11 - Wysiwyg API integration on behalf of Node module.
Code
function wysiwyg_break_plugin() {
$plugins['break'] = array(
'title' => t('Teaser break'),
'vendor url' => 'http://drupal.org/project/wysiwyg',
'icon file' => 'break.gif',
'icon title' => t('Separate the teaser and body of this content'),
'settings' => array(),
);
return $plugins;
}