123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View;
- /**
- * @api
- * @since 100.0.2
- */
- class TemplateEnginePool
- {
- /**
- * Factory
- *
- * @var TemplateEngineFactory
- */
- protected $factory;
- /**
- * Template engines
- *
- * @var \Magento\Framework\View\TemplateEngineInterface[]
- */
- protected $engines = [];
- /**
- * Constructor
- *
- * @param TemplateEngineFactory $factory
- */
- public function __construct(TemplateEngineFactory $factory)
- {
- $this->factory = $factory;
- }
- /**
- * Retrieve a template engine instance by its unique name
- *
- * @param string $name
- * @return \Magento\Framework\View\TemplateEngineInterface
- */
- public function get($name)
- {
- if (!isset($this->engines[$name])) {
- $this->engines[$name] = $this->factory->create($name);
- }
- return $this->engines[$name];
- }
- }
|