You are here

function paging_help in Paging 6

Same name and namespace in other branches
  1. 5 paging.module \paging_help()
  2. 7 paging.module \paging_help()

Implementation of hook_help().

1 call to paging_help()
paging_filter_tips in ./paging.module
Implementation of hook_filter_tips().

File

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

Code

function paging_help($path, $arg = 'none') {
  switch ($path) {
    case 'admin/help#paging':
      return '<p>' . t('Break long pages into smaller ones by means of a page break tag (e.g. %separator):</p>
<pre>First page here.
%separator
Second page here.
%separator
More pages here.</pre>', array(
        '%separator' => '<!--pagebreak-->',
      )) . '<p>' . t('Automatic page breaking based on character or word count is also supported.') . '</p>';
      break;
  }
}