1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Model\Plugin;
use Magento\Customer\Model\Config\Share;
use Magento\Store\Api\Data\WebsiteInterface;
use Magento\Store\Model\ScopeInterface;
use Magento\Store\Model\StoreManagerInterface;
/**
* Class AllowedCountries
*/
class AllowedCountries
{
/**
* @var \Magento\Customer\Model\Config\Share
*/
private $shareConfig;
/**
* @var StoreManagerInterface
*/
private $storeManager;
/**
* @param Share $share
* @param StoreManagerInterface $storeManager
*/
public function __construct(
Share $share,
StoreManagerInterface $storeManager
) {
$this->shareConfig = $share;
$this->storeManager = $storeManager;
}
/**
* Retrieve all allowed countries or specific by scope depends on customer share setting
*
* @param \Magento\Directory\Model\AllowedCountries $subject
* @param string | null $filter
* @param string $scope
* @return array
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function beforeGetAllowedCountries(
\Magento\Directory\Model\AllowedCountries $subject,
$scope = ScopeInterface::SCOPE_WEBSITE,
$scopeCode = null
) {
if ($this->shareConfig->isGlobalScope()) {
//Check if we have shared accounts - than merge all website allowed countries
$scopeCode = array_map(function (WebsiteInterface $website) {
return $website->getId();
}, $this->storeManager->getWebsites());
$scope = ScopeInterface::SCOPE_WEBSITES;
}
return [$scope, $scopeCode];
}
}