commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / views / modules / statistics / views_handler_field_statistics_numeric.inc
1 <?php
2
3 /**
4 * @file
5 * Definition of views_handler_field_statistics_numeric.
6 */
7
8 /**
9 * Field handler to present numeric values from the statistics module.
10 *
11 * @ingroup views_field_handlers
12 */
13 class views_handler_field_statistics_numeric extends views_handler_field_numeric {
14 /**
15 * {@inheritdoc}
16 */
17 public function access() {
18 // Needs permission to see total page views.
19 return user_access('view post access counter');
20 }
21 }