Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function run(ReportBuilder &$context, $coordString, $options) |
||
27 | { |
||
28 | if (!isset($options['color'])) { |
||
29 | $options['color'] = $options['default_bg_color']; |
||
30 | } |
||
31 | |||
32 | $context->sheet() |
||
33 | ->getStyle($coordString) |
||
34 | ->applyFromArray(['fill' => array( |
||
35 | 'type' => \PHPExcel_Style_Fill::FILL_SOLID, |
||
36 | 'color' => array('rgb' => $options['color']), )]); |
||
37 | } |
||
38 | } |
||
39 |