Tabs.php 457 B

123456789101112131415161718192021
  1. <?php
  2. namespace Smartwave\Dailydeals\Block\Adminhtml\Dailydeal\Edit;
  3. /**
  4. * @method Tabs setTitle(\string $title)
  5. */
  6. class Tabs extends \Magento\Backend\Block\Widget\Tabs
  7. {
  8. /**
  9. * constructor
  10. *
  11. * @return void
  12. */
  13. protected function _construct()
  14. {
  15. parent::_construct();
  16. $this->setId('dailydeal_tabs');
  17. $this->setDestElementId('edit_form');
  18. $this->setTitle(__('Dailydeal Information'));
  19. }
  20. }