Completed
Push — master ( 8f00bb...6a66c0 )
by Rick
02:55
created

Slug::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * Particle.
4
 *
5
 * @link      http://github.com/particle-php for the canonical source repository
6
 * @copyright Copyright (c) 2005-2016 Particle (http://particle-php.com)
7
 * @license   https://github.com/particle-php/Filter/blob/master/LICENSE New BSD License
8
 */
9
namespace Particle\Filter\FilterRule;
10
11
use Particle\Filter\FilterRule;
12
13
/**
14
 * Class Slug
15
 *
16
 * @package Particle\Filter\FilterRule
17
 */
18
class Slug extends FilterRule
19
{
20
    /**
21
     * Allows a default value to be set if no data key was provided
22
     *
23
     * @var bool
24
     */
25
    protected $allowNotSet = true;
26
27
    /**
28
     * @var string
29
     */
30
    private $fieldToSlugFrom;
31
32
    /**
33
     * @var string
34
     */
35
    private $transliterator = 'Any-Latin; Latin-ASCII; NFD; [:Nonspacing Mark:] Remove; NFC; [:Punctuation:] Remove; Lower();';
36
37
    /**
38
     * @param string $fieldToSlugFrom
39
     */
40 8
    public function __construct($fieldToSlugFrom)
41
    {
42 8
        $this->fieldToSlugFrom = $fieldToSlugFrom;
43 8
    }
44
45
    /**
46
     * Slug the value of either the actual field of the given one.
47
     *
48
     * @param mixed $value
49
     * @return string
50
     */
51 8
    public function filter($value)
52
    {
53 8
        if (empty($value) && isset($this->filterData[$this->fieldToSlugFrom])) {
54 1
            $value = $this->filterData[$this->fieldToSlugFrom];
55 1
        }
56
57 8
        if (is_null($value)) {
58 1
            return $this->setEmpty();
59
        }
60
61 7
        $value = transliterator_transliterate($this->transliterator, $value);
62 7
        $value = iconv("UTF-8", "ASCII//TRANSLIT//IGNORE", $value);
63 7
        $value = preg_replace('/[-$?\s]+/', '-', $value);
64 7
        $value = trim($value, '-');
65 7
        return strtolower($value);
66
    }
67
}
68