TwigGlobalsPass   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 11
c 1
b 0
f 0
dl 0
loc 18
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A process() 0 16 3
1
<?php
2
3
/**
4
 * (c) FSi sp. z o.o. <[email protected]>
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
declare(strict_types=1);
11
12
namespace FSi\Bundle\AdminBundle\DependencyInjection\Compiler;
13
14
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
17
class TwigGlobalsPass implements CompilerPassInterface
18
{
19
    public function process(ContainerBuilder $container): void
20
    {
21
        if (!$container->hasDefinition('twig')) {
22
            return;
23
        }
24
25
        $parameters = [
26
            'admin_templates_base' => $container->getParameter('admin.templates.base'),
27
            'admin_templates_form_theme' => $container->getParameter('admin.templates.form_theme'),
28
            'admin_templates_datagrid_theme' => $container->getParameter('admin.templates.datagrid_theme'),
29
            'admin_templates_datasource_theme' => $container->getParameter('admin.templates.datasource_theme'),
30
        ];
31
32
        $twig = $container->findDefinition('twig');
33
        foreach ($parameters as $name => $parameter) {
34
            $twig->addMethodCall('addGlobal', [$name, $parameter]);
35
        }
36
    }
37
}
38