You are here

function theme_pager_wrapper in Paging 6

Format the wrapper around pager links.

Parameters

$output: The themed pager links

Return value

An HTML string.

1 theme call to theme_pager_wrapper()
paging_pager_style in ./paging.module
Check and return pager navigation in specified format theme.

File

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

Code

function theme_pager_wrapper($output) {
  return '<div class="links">' . $output . '</div>';
}