12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Result;
- use Magento\Framework\ObjectManagerInterface;
- /**
- * @api
- * @since 100.0.2
- */
- class LayoutFactory
- {
- /**
- * @var ObjectManagerInterface
- */
- private $objectManager;
- /**
- * @var string
- */
- protected $instanceName;
- /**
- * @param ObjectManagerInterface $objectManager
- * @param string $instanceName
- */
- public function __construct(
- ObjectManagerInterface $objectManager,
- $instanceName = \Magento\Framework\View\Result\Layout::class
- ) {
- $this->objectManager = $objectManager;
- $this->instanceName = $instanceName;
- }
- /**
- * @return \Magento\Framework\View\Result\Layout
- */
- public function create()
- {
- /** @var \Magento\Framework\View\Result\Layout $resultLayout */
- $resultLayout = $this->objectManager->create($this->instanceName);
- $resultLayout->addDefaultHandle();
- return $resultLayout;
- }
- }
|