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