You are here

function paging_paging_pagebreak_plugin in Paging 6

Same name and namespace in other branches
  1. 7 wysiwyg/paging_pagebreak.inc \paging_paging_pagebreak_plugin()

Implementation of hook_wysiwyg_plugin().

File

wysiwyg/paging_pagebreak.inc, line 11
Wysiwyg API integration on behalf of Node module.

Code

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;
}