Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
FeatureFlagFlaHandler
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 2
12
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 __invoke
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2023 (original work) Open Assessment Technologies SA;
19 *
20 * @author Sergei Mikhailov <sergei.mikhailov@taotesting.com>
21 */
22
23declare(strict_types=1);
24
25namespace oat\taoQtiItem\model\FeatureFlag;
26
27use oat\tao\model\featureFlag\FeatureFlagCheckerInterface;
28use oat\tao\model\featureFlag\FeatureFlagConfigHandlerInterface;
29
30class FeatureFlagFlaHandler implements FeatureFlagConfigHandlerInterface
31{
32    private FeatureFlagCheckerInterface $featureFlagChecker;
33
34    public function __construct(FeatureFlagCheckerInterface $featureFlagChecker)
35    {
36        $this->featureFlagChecker = $featureFlagChecker;
37    }
38
39    public function __invoke(array $configs): array
40    {
41        // TODO Once `FEATURE_FLAG_FLA` removed, include `taoQtiItem/creator/interaction/media/property/fla` visibility
42        //  flag to [SHOW_IF_IS_TAO_ADVANCE](https://github.com/oat-sa/extension-tao-deliver-connect/blob/3a2120942dd91a6baf4d3eeea5f2ba6613ec487a/model/FeatureFlag/FeatureFlagClientConfigHandler.php#L69-L71).
43        $configs['services/features']['visibility']['taoQtiItem/creator/interaction/media/property/fla'] =
44            $this->featureFlagChecker->isEnabled('FEATURE_FLAG_FLA') ? 'show' : 'hide';
45
46        return $configs;
47    }
48}