| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | protected function set_choices() { |
||
| 34 | |||
| 35 | if ( ! is_array( $this->choices ) ) { |
||
| 36 | $this->choices = array(); |
||
| 37 | } |
||
| 38 | |||
| 39 | $defaults = array( |
||
| 40 | 'alpha' => true, |
||
| 41 | 'direction' => 'top-to-bottom', |
||
| 42 | 'colors' => array( |
||
| 43 | 'rgba(255,255,255,0)', |
||
| 44 | 'rgba(255,255,255,0)' |
||
|
|
|||
| 45 | ), |
||
| 46 | ); |
||
| 47 | $this->choices = wp_parse_args( $this->choices, $defaults ); |
||
| 48 | |||
| 49 | } |
||
| 50 | } |
||
| 51 |