![]() 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-customer/Ui/Component/Listing/Address/Column/ |
<?php declare(strict_types=1); /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Ui\Component\Listing\Address\Column; use Magento\Framework\View\Element\UiComponent\ContextInterface; use Magento\Framework\View\Element\UiComponentFactory; use Magento\Ui\Component\Listing\Columns\Column; use Magento\Framework\UrlInterface; /** * Prepare actions column for customer addresses grid */ class Actions extends Column { const CUSTOMER_ADDRESS_PATH_DELETE = 'customer/address/delete'; const CUSTOMER_ADDRESS_PATH_DEFAULT_SHIPPING = 'customer/address/defaultShippingAddress'; const CUSTOMER_ADDRESS_PATH_DEFAULT_BILLING = 'customer/address/defaultBillingAddress'; /** * @var UrlInterface */ private $urlBuilder; /** * @param ContextInterface $context * @param UiComponentFactory $uiComponentFactory * @param UrlInterface $urlBuilder * @param array $components * @param array $data */ public function __construct( ContextInterface $context, UiComponentFactory $uiComponentFactory, UrlInterface $urlBuilder, array $components = [], array $data = [] ) { $this->urlBuilder = $urlBuilder; parent::__construct($context, $uiComponentFactory, $components, $data); } /** * Prepare Data Source * * @param array $dataSource * @return array */ public function prepareDataSource(array $dataSource): array { if (isset($dataSource['data']['items'])) { foreach ($dataSource['data']['items'] as &$item) { $name = $this->getData('name'); if (isset($item['entity_id'])) { $item[$name]['edit'] = [ 'callback' => [ [ 'provider' => 'customer_form.areas.address.address' . '.customer_address_update_modal.update_customer_address_form_loader', 'target' => 'destroyInserted', ], [ 'provider' => 'customer_form.areas.address.address' . '.customer_address_update_modal', 'target' => 'openModal', ], [ 'provider' => 'customer_form.areas.address.address' . '.customer_address_update_modal.update_customer_address_form_loader', 'target' => 'render', 'params' => [ 'entity_id' => $item['entity_id'], ], ] ], 'href' => '#', 'label' => __('Edit'), 'hidden' => false, ]; $item[$name]['setDefaultBilling'] = [ 'href' => $this->urlBuilder->getUrl( self::CUSTOMER_ADDRESS_PATH_DEFAULT_BILLING, ['parent_id' => $item['parent_id'], 'id' => $item['entity_id']] ), 'label' => __('Set as default billing'), 'isAjax' => true, 'confirm' => [ 'title' => __('Set address as default billing'), 'message' => __('Are you sure you want to set the address as default billing address?') ] ]; $item[$name]['setDefaultShipping'] = [ 'href' => $this->urlBuilder->getUrl( self::CUSTOMER_ADDRESS_PATH_DEFAULT_SHIPPING, ['parent_id' => $item['parent_id'], 'id' => $item['entity_id']] ), 'label' => __('Set as default shipping'), 'isAjax' => true, 'confirm' => [ 'title' => __('Set address as default shipping'), 'message' => __('Are you sure you want to set the address as default shipping address?') ] ]; $item[$name]['delete'] = [ 'href' => $this->urlBuilder->getUrl( self::CUSTOMER_ADDRESS_PATH_DELETE, ['parent_id' => $item['parent_id'], 'id' => $item['entity_id']] ), 'label' => __('Delete'), 'isAjax' => true, 'confirm' => [ 'title' => __('Delete address'), 'message' => __('Are you sure you want to delete the address?') ] ]; } } } return $dataSource; } }