HasReplies.php
1.16 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
<?php
namespace ACP\Search\Comparison\Comment;
use AC;
use ACP\Search\Comparison;
use ACP\Search\Operators;
use ACP\Search\Query\Bindings;
use ACP\Search\Value;
class HasReplies extends Comparison
implements Comparison\Values {
public function __construct() {
$operators = new Operators( [
Operators::EQ,
] );
parent::__construct( $operators );
}
protected function create_query_bindings( $operator, Value $value ) {
$bindings = new Bindings\Comment();
$ids = $this->get_comments_with_replies();
switch ( $value->get_value() ) {
case '1':
$where = 'comment_ID IN(' . implode( ',', $ids ) . ')';
break;
default:
$where = 'comment_ID NOT IN(' . implode( ',', $ids ) . ')';
}
return $bindings->where( $where );
}
public function get_values() {
return AC\Helper\Select\Options::create_from_array( [
'1' => __( 'True', 'codepress-admin-columns' ),
'0' => __( 'False', 'codepress-admin-columns' ),
] );
}
private function get_comments_with_replies() {
global $wpdb;
$ids = $wpdb->get_col( "
SELECT comment_parent
FROM {$wpdb->comments}
WHERE comment_parent != 0
GROUP BY comment_parent"
);
return $ids;
}
}