You are here

function entity_pager_views_api in Entity Pager 7

Implements hook_views_api().

This one is used as the base to reduce errors when updating.

File

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

Code

function entity_pager_views_api() {
  return array(
    'api' => '3.0',
    'path' => drupal_get_path('module', 'entity_pager') . '/views',
  );
}