Conditions | 3 |
Paths | 3 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
10 | protected function get_reports() |
||
11 | { |
||
12 | $ratings = glsr_get_ratings([ |
||
13 | 'assigned_posts' => 'product', |
||
14 | ]); |
||
15 | $data = []; |
||
16 | foreach ($ratings->ratings as $rating => $total) { |
||
17 | if ($rating < 1) { |
||
18 | continue; |
||
19 | } |
||
20 | $data[] = [ |
||
21 | 'slug' => sprintf('rated_%s_out_of_5', $rating), |
||
22 | 'name' => sprintf(__('Rated %s out of 5', 'woocommerce'), $rating), |
||
23 | 'total' => $total, |
||
24 | ]; |
||
25 | } |
||
26 | return $data; |
||
27 | } |
||
29 |