views_test_checkboxes_theme.theme 480 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file
  4. * Changes an exposed "type" filter from a multi-select to checkboxes.
  5. */
  6. use Drupal\Core\Form\FormStateInterface;
  7. /**
  8. * Changes an exposed "type" filter from a multi-select to checkboxes.
  9. */
  10. function views_test_checkboxes_theme_form_views_exposed_form_alter(&$form, FormStateInterface $form_state) {
  11. if (isset($form['type'])) {
  12. $form['type']['#type'] = 'checkboxes';
  13. }
  14. if (isset($form['tid'])) {
  15. $form['tid']['#type'] = 'checkboxes';
  16. }
  17. }