function statistics_get

7.x statistics.module statistics_get($nid)
6.x statistics.module statistics_get($nid)

Retrieves a node's "view statistics".

Parameters

$nid: The node ID.

Return value

An associative array containing:

  • totalcount: Integer for the total number of times the node has been viewed.
  • daycount: Integer for the total number of times the node has been viewed "today". For the daycount to be reset, cron must be enabled.
  • timestamp: Integer for the timestamp of when the node was last viewed.
4 calls to statistics_get()
StatisticsLoggingTestCase::testLogging in drupal-7.x/modules/statistics/statistics.test
Verifies request logging for cached and uncached pages.
StatisticsTokenReplaceTestCase::testStatisticsTokenReplacement in drupal-7.x/modules/statistics/statistics.test
Creates a node, then tests the statistics tokens generated from it.
statistics_node_view in drupal-7.x/modules/statistics/statistics.module
Implements hook_node_view().
statistics_tokens in drupal-7.x/modules/statistics/statistics.tokens.inc
Implements hook_tokens().

File

drupal-7.x/modules/statistics/statistics.module, line 317
Logs and displays access statistics for a site.

Code

function statistics_get($nid) {

  if ($nid > 0) {
    // Retrieve an array with both totalcount and daycount.
    return db_query('SELECT totalcount, daycount, timestamp FROM {node_counter} WHERE nid = :nid', array(':nid' => $nid), array('target' => 'slave'))->fetchAssoc();
  }
}