Tabs.php 652 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Widget Instance edit tabs container
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Widget\Block\Adminhtml\Widget\Instance\Edit;
  12. /**
  13. * @api
  14. * @since 100.0.2
  15. */
  16. class Tabs extends \Magento\Backend\Block\Widget\Tabs
  17. {
  18. /**
  19. * Internal constructor
  20. *
  21. * @return void
  22. */
  23. protected function _construct()
  24. {
  25. parent::_construct();
  26. $this->setId('widget_instace_tabs');
  27. $this->setDestElementId('edit_form');
  28. $this->setTitle(__('Widget'));
  29. }
  30. }