function statistics_node_tracker

Page callback: Displays statistics for a node.

Return value

array A render array containing node statistics. If information for the node was not found, this will throw a NotFoundHttpException.

See also

statistics_menu()

1 string reference to 'statistics_node_tracker'
statistics_menu in drupal/core/modules/statistics/statistics.module
Implements hook_menu().

File

drupal/core/modules/statistics/statistics.pages.inc, line 19
User page callbacks for the Statistics module.

Code

function statistics_node_tracker() {
  if ($node = node_load(arg(1))) {
    $header = array(
      array(
        'data' => t('Time'),
        'field' => 'a.timestamp',
        'sort' => 'desc',
      ),
      array(
        'data' => t('Referrer'),
        'field' => 'a.url',
      ),
      array(
        'data' => t('User'),
        'field' => 'u.name',
      ),
      t('Operations'),
    );
    $query = db_select('accesslog', 'a', array(
      'target' => 'slave',
    ))
      ->extend('Drupal\\Core\\Database\\Query\\PagerSelectExtender')
      ->extend('Drupal\\Core\\Database\\Query\\TableSortExtender');
    $query
      ->join('users', 'u', 'a.uid = u.uid');
    $query
      ->fields('a', array(
      'aid',
      'timestamp',
      'url',
      'uid',
    ))
      ->fields('u', array(
      'name',
    ))
      ->condition(db_or()
      ->condition('a.path', 'node/' . $node->nid)
      ->condition('a.path', 'node/' . $node->nid . '/%', 'LIKE'))
      ->limit(30)
      ->orderByHeader($header);
    $result = $query
      ->execute();
    $rows = array();
    foreach ($result as $log) {
      $row = array();
      $row[] = array(
        'data' => format_date($log->timestamp, 'short'),
        'class' => array(
          'nowrap',
        ),
      );
      $row[] = _statistics_link($log->url);
      $row[] = theme('username', array(
        'account' => $log,
      ));
      $links = array();
      $links['details'] = array(
        'title' => t('details'),
        'href' => "admin/reports/access/{$log->aid}",
      );
      $row[] = array(
        'data' => array(
          '#type' => 'operations',
          '#links' => $links,
        ),
      );
      $rows[] = $row;
    }

    // Do not use $node->label() here, because $node comes from the database.
    drupal_set_title($node->title);
    $build['statistics_table'] = array(
      '#theme' => 'table',
      '#header' => $header,
      '#rows' => $rows,
      '#empty' => t('No statistics available.'),
    );
    $build['statistics_pager'] = array(
      '#theme' => 'pager',
    );
    return $build;
  }
  else {
    throw new NotFoundHttpException();
  }
}