You are here

function custom_pagers_views_api in Custom Pagers 7

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

Implements hook_views_api().

File

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

Code

function custom_pagers_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'custom_pagers') . '/views',
  );
}