first import 2.1

Signed-off-by: bachy <git@g-u-i.net>
This commit is contained in:
bachy
2012-10-27 15:02:05 +02:00
commit 9a18131bcf
55 changed files with 7639 additions and 0 deletions

21
plugins/break.inc Normal file
View File

@@ -0,0 +1,21 @@
<?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;
}