function statistics_get

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/modules/statistics/statistics.test
Verifies request logging for cached and uncached pages.
StatisticsTokenReplaceTestCase::testStatisticsTokenReplacement in drupal/modules/statistics/statistics.test
Creates a node, then tests the statistics tokens generated from it.
statistics_node_view in drupal/modules/statistics/statistics.module
Implements hook_node_view().
statistics_tokens in drupal/modules/statistics/statistics.tokens.inc
Implements hook_tokens().

File

drupal/modules/statistics/statistics.module, line 316
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();
  }
}