Your IP : 216.73.216.38


Current Path : /home/m/a/g/maglabs/it/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/
Upload File :
Current File : /home/m/a/g/maglabs/it/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/NewAction.php

<?php
/**
 *
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Variable\Controller\Adminhtml\System\Variable;

/**
 * Create new variable form
 *
 * @api
 * @since 100.0.2
 */
class NewAction extends \Magento\Variable\Controller\Adminhtml\System\Variable
{
    /**
     * New Action (forward to edit action)
     *
     * @return \Magento\Backend\Model\View\Result\Forward
     */
    public function execute()
    {
        /** @var \Magento\Backend\Model\View\Result\Forward $resultForward */
        $resultForward = $this->resultForwardFactory->create();
        return $resultForward->forward('edit');
    }
}

?>