![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/app/design/frontend/Cnc/default/Magento_Search/templates/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ // phpcs:disable Magento2.Templates.ThisInTemplate.FoundThis ?> <?php /** @var $block \Magento\Framework\View\Element\Template */ /** @var $helper \Magento\Search\Helper\Data */ $helper = $this->helper(\Magento\Search\Helper\Data::class); ?> <div class="block block-search"> <div class="block block-content"> <span class="icon icon-search" id="mobile_search_toggle"></span> <form class="form minisearch" id="search_mini_form" action="<?= $block->escapeUrl($helper->getResultUrl()) ?>" method="get" data-mage-init='{"validation":{}}'> <div class="field search"> <div class="control"> <input id="search" type="text" name="<?= $block->escapeHtmlAttr($helper->getQueryParamName()) ?>" value="<?= $block->escapeHtmlAttr($helper->getEscapedQueryText()) ?>" placeholder="<?= $block->escapeHtmlAttr(__('Part Number / SKU / Manufacturer...')) ?>" class="input-text" minlength="<?= $block->escapeHtmlAttr($helper->getMinQueryLength()) ?>" maxlength="<?= $block->escapeHtmlAttr($helper->getMaxQueryLength()) ?>" role="combobox" aria-haspopup="false" aria-autocomplete="both" autocomplete="off" aria-expanded="false" data-validate="{required:true}"/> <?= $block->getChildHtml() ?> </div> </div> <div class="actions"> <button type="submit" title="<?= $block->escapeHtml(__('Search')) ?>" class="action search" aria-label="Search" > <span><?= $block->escapeHtml(__('Search')) ?></span> </button> </div> </form> </div> </div>