Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function is_fulfilled( $environment ) { |
||
19 | $post_id = $environment['post_id']; |
||
20 | $post_level = count( get_post_ancestors( $post_id ) ) + 1; |
||
21 | $value = max( 1, intval( $this->get_value() ) ); |
||
22 | |||
23 | return $this->first_supported_comparer_is_correct( |
||
24 | $post_level, |
||
25 | $this->get_comparison_operator(), |
||
26 | $value |
||
27 | ); |
||
28 | } |
||
29 | } |