Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 11 | protected function build_query( $options ) { |
|
16 | 11 | $query = array(); |
|
17 | 11 | if ( in_array( 'all', $options['selected_cats'], true ) ) { |
|
18 | 2 | $query['category__not__in'] = array( 0 ); |
|
19 | } else { |
||
20 | 9 | $query['category__in'] = $options['selected_cats']; |
|
21 | } |
||
22 | |||
23 | 11 | return $query; |
|
24 | } |
||
25 | } |
||
26 |