123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Customer country attribute source
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\Customer\Model\ResourceModel\Address\Attribute\Source;
- use Magento\Framework\App\ObjectManager;
- use Magento\Store\Model\StoreManagerInterface;
- /**
- * Class Country.
- * @package Magento\Customer\Model\ResourceModel\Address\Attribute\Source
- */
- class Country extends \Magento\Eav\Model\Entity\Attribute\Source\Table
- {
- /**
- * @var \Magento\Directory\Model\ResourceModel\Country\CollectionFactory
- */
- protected $_countriesFactory;
- /**
- * @var StoreManagerInterface
- */
- private $storeManager;
- /**
- * @param \Magento\Eav\Model\ResourceModel\Entity\Attribute\Option\CollectionFactory $attrOptionCollectionFactory
- * @param \Magento\Eav\Model\ResourceModel\Entity\Attribute\OptionFactory $attrOptionFactory
- * @param \Magento\Directory\Model\ResourceModel\Country\CollectionFactory $countriesFactory
- */
- public function __construct(
- \Magento\Eav\Model\ResourceModel\Entity\Attribute\Option\CollectionFactory $attrOptionCollectionFactory,
- \Magento\Eav\Model\ResourceModel\Entity\Attribute\OptionFactory $attrOptionFactory,
- \Magento\Directory\Model\ResourceModel\Country\CollectionFactory $countriesFactory
- ) {
- $this->_countriesFactory = $countriesFactory;
- parent::__construct($attrOptionCollectionFactory, $attrOptionFactory);
- }
- /**
- * @inheritdoc
- */
- public function getAllOptions($withEmpty = true, $defaultValues = false)
- {
- if (!$this->_options) {
- $this->_options = $this->_createCountriesCollection()->loadByStore(
- $this->getStoreManager()->getStore()->getId()
- )->toOptionArray();
- }
- return $this->_options;
- }
- /**
- * @return \Magento\Directory\Model\ResourceModel\Country\Collection
- */
- protected function _createCountriesCollection()
- {
- return $this->_countriesFactory->create();
- }
- /**
- * Retrieve Store Manager
- * @deprecated 101.0.0
- * @return StoreManagerInterface
- */
- private function getStoreManager()
- {
- if (!$this->storeManager) {
- $this->storeManager = ObjectManager::getInstance()->get(StoreManagerInterface::class);
- }
- return $this->storeManager;
- }
- }
|