1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Layout;
- use Magento\Framework\ObjectManagerInterface;
- use Magento\Framework\View;
- /**
- * Class BuilderFactory
- */
- class BuilderFactory
- {
- /**#@+
- * Allowed builder types
- */
- const TYPE_LAYOUT = 'layout';
- const TYPE_PAGE = 'page';
- /**#@-*/
- /**#@-*/
- protected $typeMap = [
- self::TYPE_LAYOUT => \Magento\Framework\View\Layout\Builder::class,
- self::TYPE_PAGE => \Magento\Framework\View\Page\Builder::class,
- ];
- /**
- * @var ObjectManagerInterface
- */
- protected $objectManager;
- /**
- * Constructor
- *
- * @param ObjectManagerInterface $objectManager
- * @param array $typeMap
- */
- public function __construct(
- ObjectManagerInterface $objectManager,
- array $typeMap = []
- ) {
- $this->objectManager = $objectManager;
- $this->mergeTypes($typeMap);
- }
- /**
- * Add or override builder types
- *
- * @param array $typeMap
- * @return void
- */
- protected function mergeTypes(array $typeMap)
- {
- foreach ($typeMap as $typeInfo) {
- if (isset($typeInfo['type']) && isset($typeInfo['class'])) {
- $this->typeMap[$typeInfo['type']] = $typeInfo['class'];
- }
- }
- }
- /**
- * Create builder instance
- *
- * @param string $type
- * @param array $arguments
- * @throws \InvalidArgumentException
- * @return BuilderInterface
- */
- public function create($type, array $arguments)
- {
- if (empty($this->typeMap[$type])) {
- throw new \InvalidArgumentException('"' . $type . ': isn\'t allowed');
- }
- $builderInstance = $this->objectManager->create($this->typeMap[$type], $arguments);
- if (!$builderInstance instanceof BuilderInterface) {
- throw new \InvalidArgumentException(get_class($builderInstance) . ' isn\'t instance of BuilderInterface');
- }
- return $builderInstance;
- }
- }
|