Skip to content
Snippets Groups Projects
Commit 3f8dcbe2 authored by git's avatar git Committed by Tim Plunkett
Browse files

Issue #1661544 by mxwitkowski | PMZ: Added Filter aggregator source on page title in View block.

parent 25b02aa6
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -243,6 +243,9 @@ function aggregator_views_data() {
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'argument' => array(
'handler' => 'views_handler_argument_string',
),
);
// link
......@@ -257,7 +260,6 @@ function aggregator_views_data() {
'sort' => array(
'handler' => 'views_handler_sort',
),
// Information for accepting a title as a filter
'filter' => array(
'handler' => 'views_handler_filter_string',
),
......@@ -275,7 +277,6 @@ function aggregator_views_data() {
'sort' => array(
'handler' => 'views_handler_sort_date',
),
// Information for accepting a title as a filter
'filter' => array(
'handler' => 'views_handler_filter_date',
),
......@@ -293,7 +294,6 @@ function aggregator_views_data() {
'handler' => 'views_handler_field_xss',
'click sortable' => FALSE,
),
// Information for accepting a title as a filter
'filter' => array(
'handler' => 'views_handler_filter_string',
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment