Tabs.php 721 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Permissions tab for integration activation dialog.
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Integration\Block\Adminhtml\Integration\Activate\Permissions;
  9. use Magento\Backend\Block\Widget\Tabs as TabsWidget;
  10. /**
  11. * Integration activation tabs.
  12. *
  13. * @api
  14. * @codeCoverageIgnore
  15. * @since 100.0.2
  16. */
  17. class Tabs extends TabsWidget
  18. {
  19. /**
  20. * @var string
  21. */
  22. protected $_template = 'Magento_Backend::widget/tabshoriz.phtml';
  23. /**
  24. * @return void
  25. */
  26. protected function _construct()
  27. {
  28. parent::_construct();
  29. $this->setDestElementId('integrations-activate-permissions-content');
  30. }
  31. }