File: /home/petsclubcc/magento/vendor/magento/module-store/Model/GroupRepository.php
<?php
/**
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Store\Model;
use Magento\Framework\Exception\NoSuchEntityException;
class GroupRepository implements \Magento\Store\Api\GroupRepositoryInterface
{
/**
* @var GroupFactory
*/
protected $groupFactory;
/**
* @var \Magento\Store\Api\Data\GroupInterface[]
*/
protected $entities = [];
/**
* @var bool
*/
protected $allLoaded = false;
/**
* @var \Magento\Store\Model\ResourceModel\Group\CollectionFactory
*/
protected $groupCollectionFactory;
/**
* @param GroupFactory $groupFactory
* @param \Magento\Store\Model\ResourceModel\Group\CollectionFactory $groupCollectionFactory
*/
public function __construct(
GroupFactory $groupFactory,
\Magento\Store\Model\ResourceModel\Group\CollectionFactory $groupCollectionFactory
) {
$this->groupFactory = $groupFactory;
$this->groupCollectionFactory = $groupCollectionFactory;
}
/**
* {@inheritdoc}
*/
public function get($id)
{
if (isset($this->entities[$id])) {
return $this->entities[$id];
}
$group = $this->groupFactory->create();
$group->load($id);
if (null === $group->getId()) {
throw new NoSuchEntityException();
}
$this->entities[$id] = $group;
return $group;
}
/**
* {@inheritdoc}
*/
public function getList()
{
if (!$this->allLoaded) {
/** @var \Magento\Store\Model\ResourceModel\Group\Collection $groupCollection */
$groupCollection = $this->groupCollectionFactory->create();
$groupCollection->setLoadDefault(true);
foreach ($groupCollection as $item) {
$this->entities[$item->getId()] = $item;
}
$this->allLoaded = true;
}
return $this->entities;
}
/**
* {@inheritdoc}
*/
public function clean()
{
$this->entities = [];
$this->allLoaded = false;
}
}