Grid.php 663 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Newsletter\Controller\Adminhtml\Queue;
  8. use Magento\Framework\App\Action\HttpGetActionInterface;
  9. use Magento\Framework\App\Action\HttpPostActionInterface as HttpPostActionInterface;
  10. use Magento\Newsletter\Controller\Adminhtml\Queue as QueueAction;
  11. class Grid extends QueueAction implements HttpPostActionInterface, HttpGetActionInterface
  12. {
  13. /**
  14. * Queue list Ajax action
  15. *
  16. * @return void
  17. */
  18. public function execute()
  19. {
  20. $this->_view->loadLayout(false);
  21. $this->_view->renderLayout();
  22. }
  23. }