comparison sites/all/modules/wysiwyg/plugins/break.inc @ 0:ff03f76ab3fe

initial version
author danieleb <danielebarchiesi@me.com>
date Wed, 21 Aug 2013 18:51:11 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:ff03f76ab3fe
1 <?php
2
3 /**
4 * @file
5 * Wysiwyg API integration on behalf of Node module.
6 */
7
8 /**
9 * Implementation of hook_wysiwyg_plugin().
10 */
11 function wysiwyg_break_plugin() {
12 $plugins['break'] = array(
13 'title' => t('Teaser break'),
14 'vendor url' => 'http://drupal.org/project/wysiwyg',
15 'icon file' => 'break.gif',
16 'icon title' => t('Separate the teaser and body of this content'),
17 'settings' => array(),
18 );
19 return $plugins;
20 }
21