You are here

function simplenews_statistics_view in Simplenews Statistics 6.3

Same name and namespace in other branches
  1. 6 simplenews_statistics.module \simplenews_statistics_view()
  2. 6.2 simplenews_statistics.module \simplenews_statistics_view()

Gathers the opens.

1 string reference to 'simplenews_statistics_view'
simplenews_statistics_menu in ./simplenews_statistics.module
Implements hook_menu().

File

./simplenews_statistics.module, line 85
Main simplenews statistics file.

Code

function simplenews_statistics_view() {
  $stat = _simplenews_statistics_decode($_GET);
  if ($stat['mail'] && $stat['nid'] && variable_get('simplenews_statistics', 1)) {

    // Process the open for statistics.
    _simplenews_statistics_open_add($stat);
  }
}