function recently_read_views_api in Recently Read 7.2
Same name and namespace in other branches
- 7.3 recently_read.module \recently_read_views_api()
Implements of hook_views_api().
File
- ./
recently_read.module, line 28 - Recently read module file. Displays a history of recently read nodes by currently logged in user.
Code
function recently_read_views_api() {
return array(
'api' => 3.0,
'path' => drupal_get_path('module', 'recently_read') . '/includes',
);
}