Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-integration/Controller/Adminhtml/Integration/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-integration/Controller/Adminhtml/Integration/Grid.php

<?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();
    }
}