From 42c9e7bbd05acf837fe62aadc308c79e08e79a66 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org> Date: Mon, 22 Jan 2018 09:39:49 +0000 Subject: [PATCH] Issue #2937636 by piyuesh23, markconroy: Umami Theme - follow-up - Use hook_form_alter() for search block placeholder --- .../components/search/input--search.html.twig | 18 ------------------ .../demo_umami/themes/umami/umami.theme | 8 ++++++++ 2 files changed, 8 insertions(+), 18 deletions(-) delete mode 100644 core/profiles/demo_umami/themes/umami/templates/components/search/input--search.html.twig diff --git a/core/profiles/demo_umami/themes/umami/templates/components/search/input--search.html.twig b/core/profiles/demo_umami/themes/umami/templates/components/search/input--search.html.twig deleted file mode 100644 index f93702fcce6f..000000000000 --- a/core/profiles/demo_umami/themes/umami/templates/components/search/input--search.html.twig +++ /dev/null @@ -1,18 +0,0 @@ -{# -/** - * @file - * Theme override for an 'input' #type form element. - * - * Available variables: - * - attributes: A list of HTML attributes for the input element. - * - children: Optional additional rendered elements. - * - * @see template_preprocess_input() - */ -#} - -{% - set placeholder_text = 'Search by keyword, ingredient, dish' -%} - -<input{{ attributes.setAttribute('placeholder', placeholder_text) }} />{{ children }} diff --git a/core/profiles/demo_umami/themes/umami/umami.theme b/core/profiles/demo_umami/themes/umami/umami.theme index 07749eb72645..4f744eaa6581 100644 --- a/core/profiles/demo_umami/themes/umami/umami.theme +++ b/core/profiles/demo_umami/themes/umami/umami.theme @@ -5,6 +5,7 @@ * Functions to support theming in the Umami theme. */ +use Drupal\Core\Form\FormStateInterface; use Symfony\Cmf\Component\Routing\RouteObjectInterface; /** @@ -81,3 +82,10 @@ function umami_preprocess_breadcrumb(&$variables) { // "Home > Articles" on the Recipes page, which should read "Home > Recipes". $variables['#cache']['contexts'][] = 'url'; } + +/** + * Implements hook_form_FORM_ID_alter(). + */ +function umami_form_search_block_form_alter(&$form, FormStateInterface $form_state) { + $form['keys']['#attributes']['placeholder'] = t('Search by keyword, ingredient, dish'); +} -- GitLab