{% extends "widget/header/search.html.twig" %}
{% block widget_header_search_form %}
{% d3modcfgcheck modid="d3_extsearch" %}{% endd3modcfgcheck %}
{% set blockParent = parent() %}
{% if mod_d3_extsearch %}
{% block widget_header_search_form_replacement %}
{% capture assign = "content" %}{{ blockParent|raw }}{% endcapture %}
{% capture assign = "search" %}{% apply spaceless %}
name="search"
{% endapply %}{% endcapture %}
{% capture assign = "replace" %}{% apply spaceless %}
name="search" onSubmit="d3_extsearch_popup.popup.load();" autocomplete="off" spellcheck="false"
{% endapply %}{% endcapture %}
{{ content|replace({(search): replace})|raw }}
{% endblock %}
{% else %}
{{ parent() }}
{% endif %}
{% endblock %}
{% block header_search_field %}
{% d3modcfgcheck modid="d3_extsearch" %}{% endd3modcfgcheck %}
{% if mod_d3_extsearch %}
{% capture assign = "content" %}{{ parent() }}{% endcapture %}
{% block d3_extsearch_header_searchfield_searchparam %}
{% capture assign = "search" %}{% apply spaceless %}
id="searchParam"
{% endapply %}{% endcapture %}
{% capture assign = "replace" %}{% apply spaceless %}
{{ search|raw }} autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" suggestLeftOffsetPx="0" suggestTopOffsetPx="0"
{% endapply %}{% endcapture %}
{{ content|raw|replace({(search): replace})|raw }}
{% endblock %}
{% if blOwnFormFields %}
{% block d3_extsearch_header_searchfield_ownformfields %}
{# ** Fuegen Sie hier bei Bedarf noch weitere Filtermoeglichkeiten hinzu ** #}
{# Gesucht wird nach Teilen mit LIKE #}
{# #}
{# Gesucht wird nach genauem Wortlaut mit = #}
{# #}
{{ translate({ ident: "D3_CUSTOMFIELDTEXT_BITSET" }) }}
{% endblock %}
{% endif %}
{% else %}
{{ parent() }}
{% endif %}
{% endblock %}