123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- /**
- * Integration edit container.
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Block\Adminhtml\Integration;
- use Magento\Integration\Block\Adminhtml\Integration\Edit\Tab\Info;
- use Magento\Integration\Controller\Adminhtml\Integration;
- /**
- * @api
- * @since 100.0.2
- */
- class Edit extends \Magento\Backend\Block\Widget\Form\Container
- {
- /**
- * Core registry
- *
- * @var \Magento\Framework\Registry
- */
- protected $_registry = null;
- /**
- * @var \Magento\Integration\Helper\Data
- */
- protected $_integrationHelper;
- /**
- * Initialize dependencies.
- *
- * @param \Magento\Backend\Block\Widget\Context $context
- * @param \Magento\Framework\Registry $registry
- * @param \Magento\Integration\Helper\Data $integrationHelper
- * @param array $data
- */
- public function __construct(
- \Magento\Backend\Block\Widget\Context $context,
- \Magento\Framework\Registry $registry,
- \Magento\Integration\Helper\Data $integrationHelper,
- array $data = []
- ) {
- $this->_registry = $registry;
- $this->_integrationHelper = $integrationHelper;
- parent::__construct($context, $data);
- }
- /**
- * Initialize Integration edit page
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_controller = 'adminhtml_integration';
- $this->_blockGroup = 'Magento_Integration';
- parent::_construct();
- $this->buttonList->remove('reset');
- $this->buttonList->remove('delete');
- if ($this->_integrationHelper->isConfigType(
- $this->_registry->registry(Integration::REGISTRY_KEY_CURRENT_INTEGRATION)
- )
- ) {
- $this->buttonList->remove('save');
- }
- if ($this->_isNewIntegration()) {
- $this->removeButton(
- 'save'
- )->addButton(
- 'save',
- [
- 'id' => 'save-split-button',
- 'label' => __('Save'),
- 'class_name' => \Magento\Backend\Block\Widget\Button\SplitButton::class,
- 'button_class' => '',
- 'data_attribute' => [
- 'mage-init' => ['button' => ['event' => 'save', 'target' => '#edit_form']],
- ],
- 'options' => [
- 'save_activate' => [
- 'id' => 'activate',
- 'label' => __('Save & Activate'),
- 'data_attribute' => [
- 'mage-init' => [
- 'button' => ['event' => 'saveAndActivate', 'target' => '#edit_form'],
- 'integration' => ['gridUrl' => $this->getUrl('*/*/')],
- ],
- ],
- ],
- ]
- ]
- );
- }
- }
- /**
- * Get header text for edit page.
- *
- * @return \Magento\Framework\Phrase
- */
- public function getHeaderText()
- {
- if ($this->_isNewIntegration()) {
- return __('New Integration');
- } else {
- return __(
- "Edit Integration '%1'",
- $this->escapeHtml(
- $this->_registry->registry(Integration::REGISTRY_KEY_CURRENT_INTEGRATION)[Info::DATA_NAME]
- )
- );
- }
- }
- /**
- * {@inheritdoc}
- */
- public function getFormActionUrl()
- {
- return $this->getUrl('*/*/save');
- }
- /**
- * Determine whether we create new integration or editing an existing one.
- *
- * @return bool
- */
- protected function _isNewIntegration()
- {
- return !isset($this->_registry->registry(Integration::REGISTRY_KEY_CURRENT_INTEGRATION)[Info::DATA_ID]);
- }
- }
|