drupal_set_title(t('Top pages in the past %interval',array('%interval'=>format_interval(config('statistics.settings')->get('access_log.max_lifetime')))),PASS_THROUGH);
drupal_set_title(t('Top visitors in the past %interval',array('%interval'=>format_interval(config('statistics.settings')->get('access_log.max_lifetime')))),PASS_THROUGH);
* Page callback: Displays the "top referrers" in the access logs.
*
* This displays the pages with the top referrers in a given time interval that
* haven't been flushed yet. The flush interval is set on the statistics
* settings form, but is dependent on cron running.
*
* @return array
* A render array containing the top referrers information.
*/
functionstatistics_top_referrers(){
drupal_set_title(t('Top referrers in the past %interval',array('%interval'=>format_interval(config('statistics.settings')->get('access_log.max_lifetime')))),PASS_THROUGH);