123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Copyright © 2017 Ihor Vansach (ihor@magefan.com). All rights reserved.
- * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
- *
- * Glory to Ukraine! Glory to the heroes!
- */
- namespace Magefan\Blog\Controller\Search;
- /**
- * Blog search results view
- */
- class Index extends \Magefan\Blog\App\Action\Action
- {
- /**
- * View blog search results action
- *
- * @return \Magento\Framework\Controller\ResultInterface
- */
- public function execute()
- {
- if (!$this->moduleEnabled()) {
- return $this->_forwardNoroute();
- }
- $this->_view->loadLayout();
- $this->_view->renderLayout();
- }
- }
|