protected function buildValueWrapper(&
$form,
$wrapper_identifier) { // If both the field and the operator are exposed, this will end up being
// called twice. We don't want to wipe out what's already there, so if it
// exists already, do nothing.
if (!
isset($form[$wrapper_identifier])) { $form[$wrapper_identifier] =
[ '#type' => 'fieldset',
];
$exposed_info =
$this->
exposedInfo();
if (!
empty($exposed_info['label'
])) { $form[$wrapper_identifier]['#title'
] =
$exposed_info['label'
];
} if (!
empty($exposed_info['description'
])) { $form[$wrapper_identifier]['#description'
] =
$exposed_info['description'
];
} } } /**
* Build the form to let users create the group of exposed filters.
*
* This form is displayed when users click on button 'Build group'.
*/