From df7483ed154229d39a07ef4cc799a59d9fe6d929 Mon Sep 17 00:00:00 2001 From: escuriola <escuriola@gmail.com> Date: Fri, 15 Oct 2021 16:35:14 +0200 Subject: [PATCH] OEL-543: Facets form alter. --- oe_whitelabel.theme | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/oe_whitelabel.theme b/oe_whitelabel.theme index 87447e81..428887ca 100644 --- a/oe_whitelabel.theme +++ b/oe_whitelabel.theme @@ -7,6 +7,8 @@ declare(strict_types = 1); +use Drupal\Core\Form\FormStateInterface; + /** * Implements hook__preprocess_links__language_block(). */ @@ -64,3 +66,28 @@ function oe_whitelabel_preprocess_links__language_block(&$variables) { ], ]; } + +/** + * Implements hook_form_FORM_ID_alter() for facets_forms. + */ +function oe_whitelabel_form_facets_form_alter(&$form, FormStateInterface $form_state, $form_id) { + if (isset($form['actions'])) { + $form['actions']['#attributes']['class'][] = 'mt-4'; + } + if (isset($form['actions']['submit'])) { + $submit_classes = ['me-2', 'btn', 'btn-primary']; + foreach ($submit_classes as $submit_class) { + if (!in_array($submit_class, $form['actions']['submit']['#attributes']['class'], TRUE)) { + $form['actions']['submit']['#attributes']['class'][] = $submit_class; + } + } + } + if (isset($form['actions']['reset'])) { + $reset_classes = ['btn', 'btn-secondary']; + foreach ($reset_classes as $reset_class) { + if (!in_array($reset_class, $form['actions']['reset']['#attributes']['class'], TRUE)) { + $form['actions']['reset']['#attributes']['class'][] = $reset_class; + } + } + } +} -- GitLab