123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\CatalogRule\Model\Rule;
- class WebsitesOptionsProvider implements \Magento\Framework\Data\OptionSourceInterface
- {
- /**
- * @var \Magento\Store\Model\System\Store
- */
- private $store;
- /**
- * @param \Magento\Store\Model\System\Store $store
- */
- public function __construct(\Magento\Store\Model\System\Store $store)
- {
- $this->store = $store;
- }
- /**
- * @return array
- */
- public function toOptionArray()
- {
- return $this->store->getWebsiteValuesForForm();
- }
- }
|