12345678910111213141516171819202122232425 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Controller\Adminhtml\Integration;
- use Magento\Framework\App\Action\HttpGetActionInterface;
- use Magento\Framework\App\Action\HttpPostActionInterface;
- use Magento\Integration\Controller\Adminhtml\Integration as IntegrationAction;
- class Grid extends IntegrationAction implements HttpPostActionInterface, HttpGetActionInterface
- {
- /**
- * AJAX integrations grid.
- *
- * @return void
- */
- public function execute()
- {
- $this->_view->loadLayout(false);
- $this->_view->renderLayout();
- }
- }
|