You are here

function download_count_views_api in Download Count 7.3

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

Implements hook_views_api().

File

./download_count.module, line 110
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' => 3.0,
    'path' => drupal_get_path('module', 'download_count') . '/includes',
  );
}