| Current Path : /home/rtorresani/www/vendor/magento/framework/View/Layout/Condition/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/View/Layout/Condition/ConditionFactory.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\View\Layout\Condition;
use Magento\Framework\ObjectManagerInterface;
/**
* Factory for composite.
*/
class ConditionFactory
{
/**
* @var ObjectManagerInterface
*/
private $objectManager;
/**
* @param ObjectManagerInterface $objectManager
*/
public function __construct(ObjectManagerInterface $objectManager)
{
$this->objectManager = $objectManager;
}
/**
* @param array $elementVisibilityConditions
*
* @return Condition
*/
public function create(array $elementVisibilityConditions)
{
$conditions = [];
foreach ($elementVisibilityConditions as $condition) {
$conditions[] = $this->objectManager->create($condition['name']);
}
return $this->objectManager->create(Condition::class, ['conditions' => $conditions]);
}
}