Tabs.php 624 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Adminhtml billing agreements tabs view
  8. */
  9. namespace Magento\Paypal\Block\Adminhtml\Billing\Agreement\View;
  10. /**
  11. * @api
  12. * @since 100.0.2
  13. */
  14. class Tabs extends \Magento\Backend\Block\Widget\Tabs
  15. {
  16. /**
  17. * Initialize tab
  18. *
  19. * @return void
  20. */
  21. protected function _construct()
  22. {
  23. parent::_construct();
  24. $this->setId('billing_agreement_view_tabs');
  25. $this->setDestElementId('billing_agreement_view');
  26. $this->setTitle(__('Billing Agreement View'));
  27. }
  28. }