-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAGETWO-56936: [Backport][Github] Allowed countries for customer addr…
…ess in admin using storeview configuration #2946
- Loading branch information
Sergii Kovalenko
committed
Sep 12, 2016
1 parent
7edd1d1
commit 37d35ca
Showing
14 changed files
with
385 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
app/code/Magento/Customer/Model/Plugin/AllowedCountries.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
/** | ||
* Copyright © 2016 Magento. 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 | ||
*/ | ||
public function beforeGetAllowedCountries( | ||
\Magento\Directory\Model\AllowedCountries $subject, | ||
$filter = null, | ||
$scope = ScopeInterface::SCOPE_WEBSITE | ||
) { | ||
if ($this->shareConfig->isGlobalScope()) { | ||
//Check if we have shared accounts - than merge all website allowed countries | ||
$filter = array_map(function (WebsiteInterface $website) { | ||
return $website->getId(); | ||
}, $this->storeManager->getWebsites()); | ||
$scope = ScopeInterface::SCOPE_WEBSITES; | ||
} | ||
|
||
return [$filter, $scope]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.