This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/core/modules/node/node.views.inc

18 lines
337 B
PHP
Raw Normal View History

<?php
/**
* @file
* Provide views data for node.module.
*/
/**
* Implements hook_views_wizard().
*/
function node_views_wizard() {
// @todo: figure this piece out.
if (\Drupal::moduleHandler()->moduleExists('statistics')) {
$plugins['node']['available_sorts']['node_counter-totalcount:DESC'] = t('Number of hits');
}
}