Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | public function render(array $attributes): string |
||
10 | { |
||
11 | if ('edit' === filter_input(INPUT_GET, 'context')) { |
||
12 | if (empty(wp_count_posts(glsr()->post_type)->publish)) { |
||
13 | return $this->buildEmptyBlock( |
||
14 | _x('No reviews found.', 'admin-text', 'site-reviews') |
||
15 | ); |
||
16 | } |
||
17 | } |
||
18 | return parent::render($attributes); |
||
19 | } |
||
49 |