123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Adminhtml billing agreements tabs view
- */
- namespace Magento\Paypal\Block\Adminhtml\Billing\Agreement\View;
- /**
- * @api
- * @since 100.0.2
- */
- class Tabs extends \Magento\Backend\Block\Widget\Tabs
- {
- /**
- * Initialize tab
- *
- * @return void
- */
- protected function _construct()
- {
- parent::_construct();
- $this->setId('billing_agreement_view_tabs');
- $this->setDestElementId('billing_agreement_view');
- $this->setTitle(__('Billing Agreement View'));
- }
- }
|