Completed
Push — wip-locale ( 492bdd...244e0d )
by
unknown
03:03
created

LibrinfoLabelTranslatorStrategy::cleanStr()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 4
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the Blast Project package.
5
 *
6
 * Copyright (C) 2015-2017 Libre Informatique
7
 *
8
 * This file is licenced under the GNU LGPL v3.
9
 * For the full copyright and license information, please view the LICENSE.md
10
 * file that was distributed with this source code.
11
 */
12
13
namespace Blast\CoreBundle\Translator;
14
15
use Sonata\AdminBundle\Translator\LabelTranslatorStrategyInterface;
16
17
/**
18
 * Class LibrinfoLabelTranslatorStrategy.
19
 *
20
 * Provides a specific label translation strategy for Librinfo.
21
 * It is based on UnderscoreLabelTranslatorStrategy, but without the context,
22
 * and labels are prefixed by "librinfo.label."
23
 *
24
 * i.e. isValid => librinfo.label.is_valid
25
 */
26
class LibrinfoLabelTranslatorStrategy implements LabelTranslatorStrategyInterface
27
{
28
29
    protected $namePrefix; /* may be the bundle name */
30
    protected $nameFix; /* may be the admin name */
31
    
32
    public function __construct($prefix = 'Blast\CoreBundle', $fix = 'CoreAdmin')
33
    {
34
        $this->setPrefix($prefix);
35
        $this->setFix($fix);
36
    }
37
    
38
    public function setPrefix($prefix): void
39
    {
40
        $this->namePrefix = $this->cleanStr($prefix);
41
    }
42
    
43
    public function setFix($fix): void
44
    {
45
        /* Warning last set is current ... */
46
        $this->nameFix = $this->cleanStr($fix);
47
    }
48
    
49
    public function cleanStr($str) : string
50
    {
51
        $str = strtolower(str_replace('\\', '.', $str));
52
        /* user love \ */
53
        $str = str_replace('..', '.', $str);
54
        return $str;
55
    }
56
    
57
    /**
58
     * {@inheritdoc}
59
     */
60
    public function getLabel($label, $context = '', $type = ''): string
61
    {
62
        $label = str_replace('.', '_', $label);
63
64
        $label = sprintf('%s', strtolower(preg_replace('~(?<=\\w)([A-Z])~', '_$1', $label)));
65
66
        return $this->namePrefix . '.' . $label;
67
    }
68
}
69