function custom_pagers_views_api in Custom Pagers 6
Same name and namespace in other branches
- 7 custom_pagers.module \custom_pagers_views_api()
 
Implementation of hook_views_api().
File
- ./
custom_pagers.module, line 301  - 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',
  );
}