Conditions | 3 |
Paths | 3 |
Total Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function run(array $values, \DomElement $element, array $rules, \Transphporm\Hook\PseudoMatcher $pseudoMatcher, array $properties = []) { |
||
10 | if ($pseudoMatcher->hasFunction('attr')) $element->removeAttribute($pseudoMatcher->getFuncArgs('attr')[0]); |
||
11 | else if (strtolower($values[0]) === 'none') $element->setAttribute('transphporm', 'remove'); |
||
12 | else $element->setAttribute('transphporm', 'show'); |
||
13 | } |
||
14 | } |
||
15 |