You are here

function paging_filter_tips in Paging 6

Same name and namespace in other branches
  1. 5 paging.module \paging_filter_tips()

Implementation of hook_filter_tips().

File

./paging.module, line 828
Allows users to use a tag to break up a node into multiple pages.

Code

function paging_filter_tips($delta, $format, $long = FALSE) {
  if ($long) {

    // Display paging help text in filter tips.
    return '<h1>' . t('Paging Help') . '</h1>' . paging_help('admin/help#paging', array());
  }
  else {
    return t('Use %separator to create page breaks.', array(
      '%separator' => '<!--pagebreak-->',
    ));
  }
}