You are here

paging_pagebreak.inc in Paging 6

Same filename and directory in other branches
  1. 7 wysiwyg/paging_pagebreak.inc

Wysiwyg API integration on behalf of Node module.

File

wysiwyg/paging_pagebreak.inc
View source
<?php

/**
 * @file
 * Wysiwyg API integration on behalf of Node module.
 */

/**
 * Implementation of hook_wysiwyg_plugin().
 */
function paging_paging_pagebreak_plugin() {
  $plugins['paging_pagebreak'] = array(
    'title' => t('Page break'),
    'vendor url' => 'http://drupal.org/project/paging',
    'icon file' => 'pagebreak.gif',
    'icon title' => t('Add a page break to this content.'),
    'settings' => array(),
  );
  return $plugins;
}

Functions

Namesort descending Description
paging_paging_pagebreak_plugin Implementation of hook_wysiwyg_plugin().