Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Search.php
Go to the documentation of this file.
1 <?php
8 
10 
11 class Search extends Product
12 {
16  public function execute()
17  {
18  return $this->getResponse()->setBody(
19  $this->_view->getLayout()->createBlock(
20  \Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Bundle\Option\Search::class
21  )->setIndex(
22  $this->getRequest()->getParam('index')
23  )->setFirstShow(
24  true
25  )->toHtml()
26  );
27  }
28 }