NewAction.php 430 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Widget\Controller\Adminhtml\Widget\Instance;
  8. class NewAction extends \Magento\Widget\Controller\Adminhtml\Widget\Instance
  9. {
  10. /**
  11. * New widget instance action (forward to edit action)
  12. *
  13. * @return void
  14. */
  15. public function execute()
  16. {
  17. $this->_forward('edit');
  18. }
  19. }