Index.php 641 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Sitemap\Controller\Adminhtml\Sitemap;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. use Magento\Backend\App\Action;
  10. class Index extends \Magento\Sitemap\Controller\Adminhtml\Sitemap implements HttpGetActionInterface
  11. {
  12. /**
  13. * Index action
  14. *
  15. * @return void
  16. */
  17. public function execute()
  18. {
  19. $this->_initAction();
  20. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Site Map'));
  21. $this->_view->renderLayout();
  22. }
  23. }