public ConditionBase::condition($field, $value = NULL, $operator = NULL, $langcode = NULL)
Adds a condition.
Parameters
string|\Drupal\Core\Entity\Query\ConditionInterface $field:
mixed $value:
string $operator:
string $langcode:
Return value
Overrides ConditionInterface::condition
See also
\Drupal\Core\Entity\Query\QueryInterface::condition()
File
- core/lib/Drupal/Core/Entity/Query/ConditionBase.php, line 13
Class
- ConditionBase
- Defines a common base class for all entity condition implementations.
Namespace
Drupal\Core\Entity\Query
Code
1 2 3 4 5 6 7 8 9 10 | public function condition( $field , $value = NULL, $operator = NULL, $langcode = NULL) { $this ->conditions[] = array ( 'field' => $field , 'value' => $value , 'operator' => $operator , 'langcode' => $langcode , ); return $this ; } |
Please login to continue.