| Current Path : /home/rtorresani/www/vendor/magento/module-backend/Controller/Adminhtml/System/Design/ |
| Current File : //home/rtorresani/www/vendor/magento/module-backend/Controller/Adminhtml/System/Design/Index.php |
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Controller\Adminhtml\System\Design;
use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
class Index extends \Magento\Backend\Controller\Adminhtml\System\Design implements HttpGetActionInterface
{
/**
* @return \Magento\Backend\Model\View\Result\Page
*/
public function execute()
{
/** @var \Magento\Backend\Model\View\Result\Page $resultPage */
$resultPage = $this->resultPageFactory->create();
$resultPage->setActiveMenu('Magento_Backend::system_design_schedule');
$resultPage->getConfig()->getTitle()->prepend(__('Store Design'));
return $resultPage;
}
}