You are here

function download_count_block_info in Download Count 7.3

Same name and namespace in other branches
  1. 7.2 download_count.module \download_count_block_info()

Implements hook_block_info().

File

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

Code

function download_count_block_info() {
  $blocks['top_files']['info'] = t('Top Downloaded Files');
  $blocks['recent_files']['info'] = t('Recently Downloaded Files');
  return $blocks;
}