1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Block;
- /**
- * @api
- * @since 100.0.2
- */
- class GlobalSearch extends \Magento\Backend\Block\Template
- {
- /**
- * @var string
- */
- protected $_template = 'Magento_Backend::system/search.phtml';
- /**
- * Get components configuration
- * @return array
- */
- public function getWidgetInitOptions()
- {
- return [
- 'suggest' => [
- 'dropdownWrapper' => '<div class="autocomplete-results" ></div >',
- 'template' => '[data-template=search-suggest]',
- 'termAjaxArgument' => 'query',
- 'source' => $this->getUrl('adminhtml/index/globalSearch'),
- 'filterProperty' => 'name',
- 'preventClickPropagation' => false,
- 'minLength' => 2,
- 'submitInputOnEnter' => false,
- ]
- ];
- }
- }
|