1234567891011121314151617181920 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Widget\Controller\Adminhtml\Widget\Instance;
- class NewAction extends \Magento\Widget\Controller\Adminhtml\Widget\Instance
- {
- /**
- * New widget instance action (forward to edit action)
- *
- * @return void
- */
- public function execute()
- {
- $this->_forward('edit');
- }
- }
|