12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Indexer;
- use Magento\Framework\ObjectManagerInterface;
- /**
- * @api Retrieve Fieldset when implementing custom Indexer\Action
- * @since 100.0.2
- */
- class FieldsetPool
- {
- /**
- * @var ObjectManagerInterface
- */
- protected $objectManager;
- /**
- * @param ObjectManagerInterface $objectManager
- */
- public function __construct(ObjectManagerInterface $objectManager)
- {
- $this->objectManager = $objectManager;
- }
- /**
- * Get fieldset class instance
- *
- * @param string $fieldsetClass
- * @throws \InvalidArgumentException
- * @return FieldsetInterface
- */
- public function get($fieldsetClass)
- {
- $handler = $this->objectManager->get($fieldsetClass);
- if (!$handler instanceof FieldsetInterface) {
- throw new \InvalidArgumentException(
- $fieldsetClass . ' doesn\'t implement \Magento\Framework\Indexer\FieldsetInterface'
- );
- }
- return $handler;
- }
- }
|