| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | protected function blockStyles(array $attributes): array |
||
| 24 | { |
||
| 25 | $styles = []; |
||
| 26 | if (!empty($attributes['styleAlign'])) { |
||
| 27 | $alignMap = [ |
||
| 28 | 'left' => 'start', |
||
| 29 | 'right' => 'end', |
||
| 30 | ]; |
||
| 31 | $styles['--glsr-summary-align'] = $alignMap[$attributes['styleAlign']] ?? 'center'; |
||
| 32 | } |
||
| 33 | return $styles; |
||
| 34 | } |
||
| 36 |