Index.php 750 B

1234567891011121314151617181920212223242526272829
  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. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. /**
  10. * Class Index
  11. * @deprecated 100.2.0
  12. */
  13. class Index extends \Magento\Theme\Controller\Adminhtml\System\Design\Theme implements HttpGetActionInterface
  14. {
  15. /**
  16. * Index action
  17. *
  18. * @return void
  19. */
  20. public function execute()
  21. {
  22. $this->_view->loadLayout();
  23. $this->_setActiveMenu('Magento_Theme::system_design_theme');
  24. $this->_view->getLayout()->getBlock('page.title')->setPageTitle('Themes');
  25. $this->_view->renderLayout();
  26. }
  27. }