![]() 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/old/vendor/aheadworks/module-csblock/Model/Source/ |
<?php namespace Aheadworks\Csblock\Model\Source; use Magento\Framework\Data\OptionSourceInterface; use Magento\Customer\Api\GroupRepositoryInterface; use Magento\Framework\Api\SearchCriteriaBuilder; use Magento\Framework\Convert\DataObject; /** * Class CustomerGroups * * @package Aheadworks\Autorelated\Model\Source */ class CustomerGroups implements OptionSourceInterface { /** * @var GroupRepositoryInterface */ private $groupRepository; /** * @var SearchCriteriaBuilder */ private $searchCriteriaBuilder; /** * @var DataObject */ private $objectConverter; /** * @param GroupRepositoryInterface $groupRepository * @param SearchCriteriaBuilder $searchCriteriaBuilder * @param DataObject $objectConverter */ public function __construct( GroupRepositoryInterface $groupRepository, SearchCriteriaBuilder $searchCriteriaBuilder, DataObject $objectConverter ) { $this->groupRepository = $groupRepository; $this->searchCriteriaBuilder = $searchCriteriaBuilder; $this->objectConverter = $objectConverter; } /** * @return array */ public function toOptionArray() { $customerGroups = $this->groupRepository->getList($this->searchCriteriaBuilder->create())->getItems(); return $this->objectConverter->toOptionArray($customerGroups, 'id', 'code'); } }