Grid.php 487 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Theme\Controller\Adminhtml\System\Design\Theme;
  8. /**
  9. * Class Grid
  10. * @deprecated 100.2.0
  11. */
  12. class Grid extends \Magento\Theme\Controller\Adminhtml\System\Design\Theme
  13. {
  14. /**
  15. * Grid ajax action
  16. *
  17. * @return void
  18. */
  19. public function execute()
  20. {
  21. $this->_view->loadLayout(false);
  22. $this->_view->renderLayout();
  23. }
  24. }