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()

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();
  }
}