Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/View/Layout/
Upload File :
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/View/Layout/ConfigCondition.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\View\Layout;

use Magento\Framework\View\Layout\Condition\VisibilityConditionInterface;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\App\ScopeResolverInterface;

/**
 * Check that config flag is set to true,
 */
class ConfigCondition implements VisibilityConditionInterface
{
    /**
     * Unique name.
     */
    const NAME = 'ifconfig';

    /**
     * @var ScopeConfigInterface
     */
    protected $scopeConfig;

    /**
     * @var ScopeResolverInterface
     */
    protected $scopeResolver;

    /**
     * @var string|null
     */
    private $scopeType;

    /**
     * ConfigCondition constructor.
     *
     * @param ScopeConfigInterface $scopeConfig
     * @param ScopeResolverInterface $scopeResolver
     * @param string|null $scopeType
     */
    public function __construct(
        ScopeConfigInterface $scopeConfig,
        ScopeResolverInterface $scopeResolver,
        $scopeType = null
    ) {
        $this->scopeType = $scopeType;
        $this->scopeConfig = $scopeConfig;
        $this->scopeResolver = $scopeResolver;
    }

    /**
     * @inheritdoc
     */
    public function isVisible(array $arguments)
    {
        return $this->scopeConfig->isSetFlag(
            $arguments['configPath'],
            $this->scopeType,
            $this->scopeResolver->getScope()
        );
    }

    /**
     * @return string
     */
    public function getName()
    {
        return self::NAME;
    }
}