NewAction.php 435 B

123456789101112131415161718192021
  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. class NewAction extends \Magento\Sitemap\Controller\Adminhtml\Sitemap
  9. {
  10. /**
  11. * Create new sitemap
  12. *
  13. * @return void
  14. */
  15. public function execute()
  16. {
  17. // the same form is used to create and edit
  18. $this->_forward('edit');
  19. }
  20. }