Bachir Soussi Chiadmi 1bc61b12ad first import
2015-04-08 11:40:19 +02:00

22 lines
441 B
PHP

<?php
/**
* @file
* Wysiwyg API integration on behalf of Node module.
*/
/**
* Implementation of hook_wysiwyg_plugin().
*/
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;
}