views_handler_field_statistics_numeric.inc 447 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * Definition of views_handler_field_statistics_numeric.
  5. */
  6. /**
  7. * Field handler to present numeric values from the statistics module.
  8. *
  9. * @ingroup views_field_handlers
  10. */
  11. class views_handler_field_statistics_numeric extends views_handler_field_numeric {
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function access() {
  16. // Needs permission to see total page views.
  17. return user_access('view post access counter');
  18. }
  19. }