![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-paypal/Block/Adminhtml/Settlement/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Settlement; /** * Adminhtml paypal settlement reports grid block * * @api * @author Magento Core Team <[email protected]> * @since 100.0.2 */ class Report extends \Magento\Backend\Block\Widget\Grid\Container { /** * Prepare grid container, add additional buttons * * @return void */ protected function _construct() { $this->_blockGroup = 'Magento_Paypal'; $this->_controller = 'adminhtml_settlement_report'; $this->_headerText = __('PayPal Settlement Reports'); parent::_construct(); $this->buttonList->remove('add'); $message = __( 'We are connecting to the PayPal SFTP server to retrieve new reports. Are you sure you want to continue?' ); if (true == $this->_authorization->isAllowed('Magento_Paypal::fetch')) { $this->buttonList->add( 'fetch', [ 'label' => __('Fetch Updates'), 'onclick' => "confirmSetLocation('{$message}', '{$this->getUrl('*/*/fetch')}')", 'class' => 'task' ] ); } } }