![]() 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/cartforge.co/app/code/Webkul/PrivateShop/Model/PrivateGroup/Source/ |
<?php /** * Webkul Software * * @category Webkul * @package Webkul_PrivateShop * @author Webkul Software Private Limited * @copyright Webkul Software Private Limited (https://webkul.com) * @license https://store.webkul.com/license.html */ namespace Webkul\PrivateShop\Model\PrivateGroup\Source; use Magento\Framework\Data\OptionSourceInterface; use Magento\Store\Api\Data\StoreInterface; use Magento\Store\Api\StoreRepositoryInterface; class Stores implements OptionSourceInterface { /** * Constant for All Store Views */ public const ALL_STORE = 'All Store Views'; /** * @var StoreRepositoryInterface */ private $storeRepository; /** * Constructor * * @param StoreRepositoryInterface $storeRepository */ public function __construct( StoreRepositoryInterface $storeRepository ) { $this->storeRepository = $storeRepository; } /** * Get Store list * * @return array $result */ public function getAllOptions() { $result = []; $storeList = $this->storeRepository->getList(); foreach ($storeList as $index => $value) { if ($value->getStoreId() == 0) { $result[] = ['value' => 0, 'label' => self::ALL_STORE]; } else { $result[] = ['value' => $value->getStoreId(), 'label' => $value->getName()]; } } return $result; } /** * Get options * * @return array */ public function toOptionArray() { return $this->getAllOptions(); } }