You are here

break.inc in Wysiwyg 7.2

Same filename and directory in other branches
  1. 5.2 plugins/break.inc
  2. 6.2 plugins/break.inc

Wysiwyg API integration on behalf of Node module.

File

plugins/break.inc
View source
<?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;
}

Functions

Namesort descending Description
wysiwyg_break_plugin Implementation of hook_wysiwyg_plugin().