# smart-forms/trunk/php_classes/api/query/WhereClause.php

Smart Forms – when you need more than just a contact form, version trunk. 121 lines.

- Page: https://pluginprobe.com/plugins/smart-forms/trunk/code/php_classes/api/query/WhereClause.php
- Raw: https://pluginprobe.com/plugins/smart-forms/trunk/raw/php_classes/api/query/WhereClause.php
- Modified: 2019-09-25T20:41:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/smart-forms/trunk/code/php_classes/api/query/WhereClause.php#L10-L20`.

```php
<?php
/**
 * Created by PhpStorm.
 * User: Edgar
 * Date: 12/1/2017
 * Time: 12:38 PM
 */
require_once SMART_FORMS_DIR.'php_classes/api/query/comparators/ComparatorBase.php';
class WhereClause
{
    private $field;
    private $comparison;
    private $value;
    private $join;
    private $Comparator;

    public $openParentheses=false;
    public $closeParentheses=false;

    public function __construct($field, $comparison, $value,$join)
    {
        $this->join=$join;
        $this->field=$field;
        $this->value=$value;
        $this->comparison=$comparison;

        $this->Comparator=ComparatorFactory::GetComparator($field['ClassName']);
        $this->Comparator->Initialize($field,$comparison,$value);
    }


    private function GetOperationString()
    {
        if($this->comparison=='like')
        {
            switch($this->GetSerializationType())
            {
                case "text":
                    return "value like concat('%%',%s,'%%')";
                case "list":
                    return "value in (%l)";
                case "check":
                    return "(%c)";
                default:
                    throw new Exception("Invalid like operation");
            }
        }

        switch($this->comparison)
        {
            case 'like':
            case 'not like':
                return "value ".$this->comparison." concat('%%',%s,'%%')";
            break;

            case "in":
            case "not in":
                return "value ".$this->comparison." (%l)";
            default:
                if($this->GetSerializationType()=='date')
                    return "datevalue".$this->comparison."%s";
                return "value".$this->comparison."%s";


        }
    }

    public function GetText()
    {


        global $wpdb;
        $statement='';
        if($this->field['Id']=="_FormId")
        {
            $statement= $wpdb->prepare(" parent.entry_id=%s ",$this->value);
        }else

            if($this->field['Id']=="_SFTimeStamp"||$this->field['Id']=="_Date")
            {
                $statement= $wpdb->prepare(" parent.date".$this->comparison."%s ",$this->value);
            }else

                if($this->field['Id']=="_UserId")
                {
                    $statement= $wpdb->prepare(" parent.user_id".$this->comparison."%s ",$this->value);
                }else{
                    $statement=$wpdb->prepare(" exists(select 1 from ".SMART_FORMS_ENTRY_DETAIL." detail where parent.entry_id=detail.entry_id and field_id=%s  and ".$this->Comparator->GetConditionString()." ) ",$this->field['Id']);
                }


        if($this->join=='or')
        {
            $join = ' or';
        }
        else
        {
            $join = ' and';
        }


        return  $join.$statement;

    }

    private function GetSerializationType()
    {
        switch($this->field['ClassName']){
            case 'rednaodatepicker':
                return 'date';
            case "rednaomultiplecheckboxes":
                return "list";
            default:
                return 'text';


        }
    }


}
```
