Tabs.php 595 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Integration\Block\Adminhtml\Integration\Edit;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. class Tabs extends \Magento\Backend\Block\Widget\Tabs
  12. {
  13. /**
  14. * Initialize integration edit page tabs
  15. *
  16. * @return void
  17. * @codeCoverageIgnore
  18. */
  19. protected function _construct()
  20. {
  21. parent::_construct();
  22. $this->setId('integration_edit_tabs');
  23. $this->setDestElementId('edit_form');
  24. $this->setTitle(__('Basic Settings'));
  25. }
  26. }