| Current Path : /home/rtorresani/www/vendor/magento/module-newsletter/Controller/Adminhtml/Queue/ |
| Current File : //home/rtorresani/www/vendor/magento/module-newsletter/Controller/Adminhtml/Queue/Grid.php |
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Newsletter\Controller\Adminhtml\Queue;
use Magento\Framework\App\Action\HttpGetActionInterface;
use Magento\Framework\App\Action\HttpPostActionInterface as HttpPostActionInterface;
use Magento\Newsletter\Controller\Adminhtml\Queue as QueueAction;
class Grid extends QueueAction implements HttpPostActionInterface, HttpGetActionInterface
{
/**
* Queue list Ajax action
*
* @return void
*/
public function execute()
{
$this->_view->loadLayout(false);
$this->_view->renderLayout();
}
}