You are here

function download_count_views_api in Download Count 6.2

Same name and namespace in other branches
  1. 7.3 download_count.module \download_count_views_api()
  2. 7.2 download_count.module \download_count_views_api()

Implementation of hook_view_api().

File

./download_count.module, line 146
Tracks file downloads for files stored in the drupal files table using the private files setting or custom private filefield.

Code

function download_count_views_api() {
  return array(
    'api' => 2.0,
    'path' => drupal_get_path('module', 'download_count') . '/includes',
  );
}