1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Theme\Controller\Adminhtml\System\Design\Theme;
- use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
- /**
- * Class Index
- * @deprecated 100.2.0
- */
- class Index extends \Magento\Theme\Controller\Adminhtml\System\Design\Theme implements HttpGetActionInterface
- {
- /**
- * Index action
- *
- * @return void
- */
- public function execute()
- {
- $this->_view->loadLayout();
- $this->_setActiveMenu('Magento_Theme::system_design_theme');
- $this->_view->getLayout()->getBlock('page.title')->setPageTitle('Themes');
- $this->_view->renderLayout();
- }
- }
|