You are here

function download_count_block_save in Download Count 7.3

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

Implements hook_block_save().

File

./download_count.module, line 280
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_save($delta, $edit) {
  variable_set('download_count_' . $delta . '_block_limit', $edit['download_count_' . $delta . '_block_limit']);
}