Update to Drupal 8.1.3. For more information, see https://www.drupal.org/project/drupal/releases/8.1.3
This commit is contained in:
parent
20d57a1e28
commit
13b6ca7cc2
7 changed files with 83 additions and 7 deletions
|
@ -22,7 +22,7 @@ function statistics_views_data() {
|
|||
'title' => t('Total views'),
|
||||
'help' => t('The total number of times the node has been viewed.'),
|
||||
'field' => array(
|
||||
'id' => 'numeric',
|
||||
'id' => 'statistics_numeric',
|
||||
'click sortable' => TRUE,
|
||||
),
|
||||
'filter' => array(
|
||||
|
@ -40,7 +40,7 @@ function statistics_views_data() {
|
|||
'title' => t('Views today'),
|
||||
'help' => t('The total number of times the node has been viewed today.'),
|
||||
'field' => array(
|
||||
'id' => 'numeric',
|
||||
'id' => 'statistics_numeric',
|
||||
'click sortable' => TRUE,
|
||||
),
|
||||
'filter' => array(
|
||||
|
@ -58,7 +58,7 @@ function statistics_views_data() {
|
|||
'title' => t('Most recent view'),
|
||||
'help' => t('The most recent time the node has been viewed.'),
|
||||
'field' => array(
|
||||
'id' => 'date',
|
||||
'id' => 'node_counter_timestamp',
|
||||
'click sortable' => TRUE,
|
||||
),
|
||||
'filter' => array(
|
||||
|
|
Reference in a new issue