12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Permissions tab for integration activation dialog.
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Block\Adminhtml\Integration\Activate\Permissions;
- use Magento\Backend\Block\Widget\Tabs as TabsWidget;
- /**
- * Integration activation tabs.
- *
- * @api
- * @codeCoverageIgnore
- * @since 100.0.2
- */
- class Tabs extends TabsWidget
- {
- /**
- * @var string
- */
- protected $_template = 'Magento_Backend::widget/tabshoriz.phtml';
- /**
- * @return void
- */
- protected function _construct()
- {
- parent::_construct();
- $this->setDestElementId('integrations-activate-permissions-content');
- }
- }
|