You are here

function paging_filter_tips in Paging 5

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

Implementation of hook_filter_tips().

File

./paging.module, line 403

Code

function paging_filter_tips($in_delta, $in_format, $in_is_long = FALSE) {
  if ($in_is_long) {
    return '<h1>' . t('Paging Help') . '</h1>' . paging_help('admin/help#paging');
  }
  else {
    return t('Use %separator to create page breaks.', array(
      '%separator' => PAGING_SEPARATOR,
    ));
  }
}