%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Search/Comparison/Comment/
Upload File :
Create Path :
Current File : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Search/Comparison/Comment/IsReply.php

<?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 IsReply extends Comparison
	implements Comparison\Values {

	public function __construct() {
		$operators = new Operators( [
			Operators::EQ,
		] );

		parent::__construct( $operators );
	}

	protected function create_query_bindings( $operator, Value $value ) {
		global $wpdb;

		$bindings = new Bindings\Comment();

		switch ( $value->get_value() ) {
			case '1':
				$where = "{$wpdb->comments}.comment_parent != 0";
				break;
			default:
				$where = "{$wpdb->comments}.comment_parent = 0";
		}

		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' ),
		] );
	}

}

Zerion Mini Shell 1.0