|
@@ 75-79 (lines=5) @@
|
| 72 |
|
return $this->entityAlias . '.' . $this->fieldName . ' ' . |
| 73 |
|
$this->operator->getMeta() . ' ' . |
| 74 |
|
$this->entityAlias . '.' . $this->value; |
| 75 |
|
} else { |
| 76 |
|
return $this->entityAlias . '.' . $this->fieldName . ' ' . |
| 77 |
|
$this->operator->getMeta() . ' ' . |
| 78 |
|
':field_' . $this->fieldName . $this->salt->getSalt(); |
| 79 |
|
} |
| 80 |
|
} else { |
| 81 |
|
return $this->entityAlias . '.' . $this->fieldName . ' ' . |
| 82 |
|
$this->operator->getMeta() . ' ' . |
|
@@ 80-84 (lines=5) @@
|
| 77 |
|
$this->operator->getMeta() . ' ' . |
| 78 |
|
':field_' . $this->fieldName . $this->salt->getSalt(); |
| 79 |
|
} |
| 80 |
|
} else { |
| 81 |
|
return $this->entityAlias . '.' . $this->fieldName . ' ' . |
| 82 |
|
$this->operator->getMeta() . ' ' . |
| 83 |
|
':field_' . $this->fieldName . $this->salt->getSalt(); |
| 84 |
|
} |
| 85 |
|
} |
| 86 |
|
|
| 87 |
|
public function setRelationEntityAlias(string $relationEntityAlias) |
|
@@ 96-100 (lines=5) @@
|
| 93 |
|
{ |
| 94 |
|
if ($this->isListOperator()) { |
| 95 |
|
return $this->renderListCondition(); |
| 96 |
|
} else { |
| 97 |
|
return $this->relationEntityAlias . '.' . $this->fieldName . ' ' . |
| 98 |
|
$this->operator->getMeta() . ' ' . |
| 99 |
|
':field_' . $this->fieldName . $this->salt->getSalt(); |
| 100 |
|
} |
| 101 |
|
} |
| 102 |
|
|
| 103 |
|
public function getFieldName() |