| Current Path : /home/rtorresani/www/vendor/magento/module-paypal/Block/Adminhtml/Billing/Agreement/View/ |
| Current File : //home/rtorresani/www/vendor/magento/module-paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php |
<?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'));
}
}