You are here

function custom_pagers_theme in Custom Pagers 6

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

File

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

Code

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