Conditions | 4 |
Paths | 6 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | protected function blockStyleAttr(array $attributes): string |
||
25 | { |
||
26 | $attr = []; |
||
27 | if (!empty($attributes['styleRatingColor'])) { |
||
28 | $attr[] = "--glsr-form-star-bg: var(--wp--preset--color--{$attributes['styleRatingColor']});"; |
||
29 | } elseif (!empty($attributes['styleRatingColorCustom'])) { |
||
30 | $attr[] = "--glsr-form-star-bg: {$attributes['styleRatingColorCustom']};"; |
||
31 | } |
||
32 | if (!empty($attributes['styleStarSize'])) { |
||
33 | $attr[] = "--glsr-form-star: {$attributes['styleStarSize']};"; |
||
34 | } |
||
35 | return implode('', $attr); |
||
36 | } |
||
38 |