You are here

function custom_pagers_theme in Custom Pagers 7

Same name and namespace in other branches
  1. 6 custom_pagers.module \custom_pagers_theme()

Implements hook_theme()

File

./custom_pagers.module, line 63
Allows administrators to define context-sensitive previous/next pagers for any node type.

Code

function custom_pagers_theme() {
  return array(
    'custom_pager' => array(
      'variables' => array(
        'nav_array' => NULL,
        'node' => NULL,
        'pager' => NULL,
        'position' => 'bottom',
      ),
      'template' => 'custom-pager',
    ),
  );
}