Ancestors.php
846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace ACP\Search\Comparison\Post;
use ACP\Search\Comparison;
use ACP\Search\Helper\Sql\ComparisonFactory;
use ACP\Search\Operators;
use ACP\Search\Query\Bindings;
use ACP\Search\Value;
class Ancestors extends Comparison {
public function __construct() {
$operators = new Operators( [
Operators::IS_EMPTY,
Operators::NOT_IS_EMPTY,
] );
parent::__construct( $operators, Value::INT );
}
protected function create_query_bindings( $operator, Value $value ) {
global $wpdb;
$operator = $operator === Operators::IS_EMPTY
? Operators::EQ
: Operators::NEQ;
$new_value = new Value(
0,
Value::INT
);
$where = ComparisonFactory::create(
$wpdb->posts . '.post_parent',
$operator,
$new_value
)->prepare();
$bindings = new Bindings();
$bindings->where( $where );
return $bindings;
}
}