You are here

function paging_help in Paging 5

Same name and namespace in other branches
  1. 6 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 11

Code

function paging_help($section) {
  switch ($section) {
    case 'admin/help#paging':
      return t('<p>Break long pages into smaller ones by means of a page tag:</p>
<pre>First page here.
%separator
Second page here.
%separator
More pages here.</pre>', array(
        '%separator' => PAGING_SEPARATOR,
      ));
  }
}