break.inc 441 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * Wysiwyg API integration on behalf of Node module.
  5. */
  6. /**
  7. * Implementation of hook_wysiwyg_plugin().
  8. */
  9. function wysiwyg_break_plugin() {
  10. $plugins['break'] = array(
  11. 'title' => t('Teaser break'),
  12. 'vendor url' => 'http://drupal.org/project/wysiwyg',
  13. 'icon file' => 'break.gif',
  14. 'icon title' => t('Separate the teaser and body of this content'),
  15. 'settings' => array(),
  16. );
  17. return $plugins;
  18. }