views_test_checkboxes_theme.theme
Same filename in other branches
Changes an exposed "type" filter from a multi-select to checkboxes.
File
-
core/
modules/ views/ tests/ themes/ views_test_checkboxes_theme/ views_test_checkboxes_theme.theme
View source
<?php
/**
* @file
* Changes an exposed "type" filter from a multi-select to checkboxes.
*/
use Drupal\Core\Form\FormStateInterface;
/**
* Changes an exposed "type" filter from a multi-select to checkboxes.
*/
function views_test_checkboxes_theme_form_views_exposed_form_alter(&$form, FormStateInterface $form_state) {
if (isset($form['type'])) {
$form['type']['#type'] = 'checkboxes';
}
if (isset($form['tid'])) {
$form['tid']['#type'] = 'checkboxes';
}
}
Functions
Title | Deprecated | Summary |
---|---|---|
views_test_checkboxes_theme_form_views_exposed_form_alter | Changes an exposed "type" filter from a multi-select to checkboxes. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.