Conditions | 4 |
Paths | 6 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | protected function blockStyleAttr(array $attributes): string |
||
36 | { |
||
37 | $attr = []; |
||
38 | if (!empty($attributes['styleRatingColor'])) { |
||
39 | $attr[] = "--glsr-review-star-bg: var(--wp--preset--color--{$attributes['styleRatingColor']});"; |
||
40 | } elseif (!empty($attributes['styleRatingColorCustom'])) { |
||
41 | $attr[] = "--glsr-review-star-bg: {$attributes['styleRatingColorCustom']};"; |
||
42 | } |
||
43 | if (!empty($attributes['styleStarSize'])) { |
||
44 | $attr[] = "--glsr-review-star: {$attributes['styleStarSize']};"; |
||
45 | } |
||
46 | return implode('', $attr); |
||
47 | } |
||
49 |