function statistics_recent_hits in Drupal 4
Same name and namespace in other branches
- 5 modules/statistics/statistics.module \statistics_recent_hits()
- 6 modules/statistics/statistics.admin.inc \statistics_recent_hits()
- 7 modules/statistics/statistics.admin.inc \statistics_recent_hits()
Menu callback; presents the "recent hits" page.
1 string reference to 'statistics_recent_hits'
- statistics_menu in modules/
statistics.module - Implementation of hook_menu().
File
- modules/
statistics.module, line 231 - Logs access statistics for your site.
Code
function statistics_recent_hits() {
$header = array(
array(
'data' => t('Timestamp'),
'field' => 'a.timestamp',
'sort' => 'desc',
),
array(
'data' => t('Page'),
'field' => 'a.path',
),
array(
'data' => t('User'),
'field' => 'u.name',
),
array(
'data' => t('Operations'),
),
);
$sql = 'SELECT a.aid, a.path, a.title, a.uid, u.name, a.timestamp FROM {accesslog} a LEFT JOIN {users} u ON u.uid = a.uid' . tablesort_sql($header);
$result = pager_query($sql, 30);
while ($log = db_fetch_object($result)) {
$rows[] = array(
array(
'data' => format_date($log->timestamp, 'small'),
'class' => 'nowrap',
),
_statistics_format_item($log->title, $log->path),
theme('username', $log),
l(t('details'), "admin/logs/access/{$log->aid}"),
);
}
$output = theme('table', $header, $rows);
$output .= theme('pager', NULL, 30, 0);
return $output;
}