Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -11,5 +11,10 @@ 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) {
|
||||
$form['type']['#type'] = 'checkboxes';
|
||||
if (isset($form['type'])) {
|
||||
$form['type']['#type'] = 'checkboxes';
|
||||
}
|
||||
if (isset($form['tid'])) {
|
||||
$form['tid']['#type'] = 'checkboxes';
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue