123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Block\Adminhtml\Integration\Edit;
- use Magento\Integration\Block\Adminhtml\Integration\Edit\Tab\Info;
- use Magento\Integration\Controller\Adminhtml\Integration;
- /**
- * @SuppressWarnings(PHPMD.DepthOfInheritance)
- */
- class Form extends \Magento\Backend\Block\Widget\Form\Generic
- {
- /**
- * Prepare form before rendering HTML
- *
- * @return $this
- */
- protected function _prepareForm()
- {
- /** @var \Magento\Framework\Data\Form $form */
- $form = $this->_formFactory->create(
- ['data' => ['id' => 'edit_form', 'action' => $this->getData('action'), 'method' => 'post']]
- );
- $integrationData = $this->_coreRegistry->registry(Integration::REGISTRY_KEY_CURRENT_INTEGRATION);
- if (isset($integrationData[Info::DATA_ID])) {
- $form->addField(Info::DATA_ID, 'hidden', ['name' => 'id']);
- $form->setValues($integrationData);
- }
- $form->setUseContainer(true);
- $this->setForm($form);
- return parent::_prepareForm();
- }
- }
|