Base::addClass()   F
last analyzed

Complexity

Conditions 14
Paths 266

Size

Total Lines 32
Code Lines 22

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 28
CRAP Score 14

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 32
ccs 28
cts 28
cp 1
rs 3.7522
cc 14
eloc 22
nc 266
nop 2
crap 14

How to fix   Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
namespace BootPress\Bootstrap;
4
5
trait Base
6
{
7 16
    protected function prefixClasses($base, array $prefix, $classes, $exclude_base = false)
8
    {
9 16
        if (!is_array($classes)) {
10 13
            $classes = explode(' ', $classes);
11 13
        }
12 16
        $classes = array_filter($classes);
13 16
        foreach ($classes as $key => $class) {
14 16
            if (in_array($class, $prefix)) {
15 16
                $classes[$key] = $base.'-'.$class;
16 16
            }
17 16
        }
18 16
        if ($exclude_base === false) {
19 15
            array_unshift($classes, $base);
20 15
        }
21
22 16
        return implode(' ', array_unique($classes));
23
    }
24
25 13
    protected function addClass($html, array $tags)
26
    {
27 13
        $rnr = array();
28 13
        foreach ($tags as $tag => $class) {
29 13
            $prefix = (is_array($class) && isset($class[2]) && is_array($class[1])) ? $class : false;
30 13
            if ($prefix) {
31 1
                $class = $class[2];
32 1
            }
33 13
            if (is_string($class) && !empty($class)) {
34 13
                $class = explode(' ', $class);
35 13
                preg_match_all('/(\<'.$tag.'([^\>]*)\>)/i', $html, $matches);
36 13
                foreach (array_unique($matches[0]) as $add) {
37 12
                    if ($this->firstTagAttributes($add, $match)) {
38 12
                        list($add, $tag, $attributes) = $match;
39 12
                        $merge = (isset($attributes['class'])) ? array_merge(explode(' ', $attributes['class']), $class) : $class;
40 12
                        if ($prefix) {
41 1
                            $prefix[2] = $merge;
42 1
                            $attributes['class'] = call_user_func_array(array($this, 'prefixClasses'), $prefix);
43 1
                        } else {
44 12
                            $attributes['class'] = implode(' ', array_unique(array_filter($merge)));
45
                        }
46 12
                        foreach ($attributes as $key => $value) {
47 12
                            $attributes[$key] = $key.'="'.$value.'"';
48 12
                        }
49 12
                        $rnr[$add] = '<'.$tag.' '.implode(' ', $attributes).'>';
50 12
                    }
51 13
                }
52 13
            }
53 13
        }
54
55 13
        return (!empty($rnr)) ? str_replace(array_keys($rnr), array_values($rnr), $html) : $html;
56
    }
57
58 12
    protected function firstTagAttributes($html, &$matches, $find = '<')
59
    {
60 12
        if (false !== $begin = strpos($html, $find)) {
61 12
            if (false !== $end = strpos($html, '>', $begin)) {
62 12
                $first = substr($html, $begin, $end - $begin + 1);
63 12
                $tag = trim(substr($first, 1, -1));
64 12
                $dom = new \DOMDocument();
65 12
                @$dom->loadHTML('<'.rtrim($tag.'/').' />');
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
66 12
                foreach ($dom->getElementsByTagName('body')->item(0)->childNodes as $node) {
67 12
                    $attributes = array();
68 12
                    foreach ($node->attributes as $attr) {
69 8
                        $attributes[$attr->nodeName] = $attr->nodeValue;
70 12
                    }
71 12
                    $matches = array($first, $node->nodeName, $attributes);
72 12
                    unset($dom);
73 12
                    break;
74 12
                }
75 12
            }
76 12
        }
77
78 12
        return isset($attributes) ? true : false;
79
    }
80
}
81