statistics_ranking

7 statistics.module statistics_ranking()
8 statistics.module statistics_ranking()

Implements hook_ranking().

File

modules/statistics/statistics.module, line 406
Logs access statistics for your site.

Code

function statistics_ranking() {
  if (variable_get('statistics_count_content_views', 0)) {
    return array(
      'views' => array(
        'title' => t('Number of views'), 
        'join' => array(
          'type' => 'LEFT', 
          'table' => 'node_counter', 
          'alias' => 'node_counter', 
          'on' => 'node_counter.nid = i.sid',
        ),
        // Inverse law that maps the highest view count on the site to 1 and 0 to 0. 
        'score' => '2.0 - 2.0 / (1.0 + node_counter.totalcount * CAST(:scale AS DECIMAL))', 
        'arguments' => array(':scale' => variable_get('node_cron_views_scale', 0)),
      ),
    );
  }
}
Login or register to post comments