You are here

function paging_help in Paging 7

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

Implements hook_help().

File

./paging.module, line 15
Allows a node to be broken into multiple pages via a tag.

Code

function paging_help($path, $arg) {
  switch ($path) {

    // Main module help for the block module
    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' => variable_get('paging_separator', '<!--pagebreak-->'),
      )) . '<p>' . t('Automatic page breaking based on character or word count is also supported.') . '</p>';
  }
}