![]() 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/old/vendor/magento/module-paypal/Block/Adminhtml/Customer/Edit/Tab/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Paypal\Block\Adminhtml\Customer\Edit\Tab; use Magento\Customer\Controller\RegistryConstants; use Magento\Ui\Component\Layout\Tabs\TabInterface; /** * Adminhtml customer billing agreement tab * * @api * @SuppressWarnings(PHPMD.DepthOfInheritance) * @since 100.0.2 */ class Agreement extends \Magento\Paypal\Block\Adminhtml\Billing\Agreement\Grid implements TabInterface { /** * Columns, that should be removed from grid * * @var array */ protected $_columnsToRemove = ['customer_email', 'customer_firstname', 'customer_lastname']; /** * Core registry * * @var \Magento\Framework\Registry */ protected $_coreRegistry = null; /** * @param \Magento\Backend\Block\Template\Context $context * @param \Magento\Backend\Helper\Data $backendHelper * @param \Magento\Paypal\Helper\Data $helper * @param \Magento\Paypal\Model\ResourceModel\Billing\Agreement\CollectionFactory $agreementFactory * @param \Magento\Paypal\Model\Billing\Agreement $agreementModel * @param \Magento\Framework\Registry $coreRegistry * @param array $data */ public function __construct( \Magento\Backend\Block\Template\Context $context, \Magento\Backend\Helper\Data $backendHelper, \Magento\Paypal\Helper\Data $helper, \Magento\Paypal\Model\ResourceModel\Billing\Agreement\CollectionFactory $agreementFactory, \Magento\Paypal\Model\Billing\Agreement $agreementModel, \Magento\Framework\Registry $coreRegistry, array $data = [] ) { $this->_coreRegistry = $coreRegistry; parent::__construct($context, $backendHelper, $helper, $agreementFactory, $agreementModel, $data); } /** * Disable filters and paging * * @return void */ protected function _construct() { parent::_construct(); $this->setId('customer_edit_tab_agreements'); } /** * {@inheritdoc} */ public function getTabLabel() { return __('Billing Agreements'); } /** * {@inheritdoc} */ public function getTabTitle() { return __('Billing Agreements'); } /** * {@inheritdoc} */ public function canShowTab() { return $this->_coreRegistry->registry(RegistryConstants::CURRENT_CUSTOMER_ID) !== null; } /** * {@inheritdoc} */ public function isHidden() { return false; } /** * Get grid url * * @return string */ public function getGridUrl() { return $this->getUrl('paypal/billing_agreement/customerGrid', ['_current' => true]); } /** * Tab class getter * * @return string */ public function getTabClass() { return ''; } /** * Return URL link to Tab content * * @return string */ public function getTabUrl() { return ''; } /** * Tab should be loaded trough Ajax call * * @return bool */ public function isAjaxLoaded() { return false; } /** * Defines after which tab, this tab should be rendered * * @return string */ public function getAfter() { return 'orders'; } /** * Prepare collection for grid * * @return $this */ protected function _prepareCollection() { $customerId = $this->_coreRegistry->registry(RegistryConstants::CURRENT_CUSTOMER_ID); $collection = $this->_agreementFactory->create()->addFieldToFilter( 'customer_id', $customerId )->setOrder( 'created_at' ); $this->setCollection($collection); return \Magento\Backend\Block\Widget\Grid::_prepareCollection(); } /** * Remove some columns and make other not sortable * * @return \Magento\Backend\Block\Widget\Grid\Extended * @SuppressWarnings(PHPMD.UnusedLocalVariable) */ protected function _prepareColumns() { $result = parent::_prepareColumns(); foreach ($this->getColumns() as $key => $value) { if (in_array($key, $this->_columnsToRemove)) { $this->removeColumn($key); } } return $result; } }