You are here

function entity_pager_theme in Entity Pager 7

Implements hook_theme().

File

./entity_pager.module, line 45
This module allows you to add Pager blocks to navigate through entities.

Code

function entity_pager_theme() {
  $themes = array();
  $themes['entity_pager'] = array(
    'variables' => array(
      'list' => array(),
    ),
    'template' => 'entity_pager',
  );
  return $themes;
}