- Issue created by @michaelmol
- First commit to issue fork.
I would like to have the number of results wrapper around in a div or span.
Currently the output is something like this:
<label for="edit-field-swimming-binnenzwembad" class="option">Binnenzwembad (1)</label>
Where (1) is appended to the label. But if a want some kind of styling onto it, I can not achieve that.
In buildOptions() in /modules/contrib/facets/modules/facets_exposed_filters/src/Plugin/views/filter/FacetsFilter.php
i have to change to
class FacetsFilter extends FilterPluginBase {
foreach ($results as $result) {
$label = $result->getDisplayValue();
if ($this->options["facet"]["show_numbers"] && $result->getCount() !== FALSE) {
- $label .= ' (' . $result->getCount() . ')';
+ $label .= ' <span class="facet-count">' . $result->getCount() . '</span>';
}
and
class FacetsFilter extends FilterPluginBase {
// Store processed results so other modules can use these.
$this->facet_results = $facet->getResults();
$form['value'] = [
- '#type' => 'select',
+ '#type' => 'markup',
Active
3.0
Code