function SelectExtender::conditionGroupFactory
Creates an object holding a group of conditions.
See andConditionGroup() and orConditionGroup() for more.
Parameters
$conjunction:
- AND (default): this is the equivalent of andConditionGroup().
 - OR: this is the equivalent of orConditionGroup().
 
Return value
\Drupal\Core\Database\Query\ConditionInterface An object holding a group of conditions.
Overrides ConditionInterface::conditionGroupFactory
2 calls to SelectExtender::conditionGroupFactory()
- SelectExtender::andConditionGroup in core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php  - Creates a new group of conditions ANDed together.
 - SelectExtender::orConditionGroup in core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php  - Creates a new group of conditions ORed together.
 
File
- 
              core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php, line 531  
Class
- SelectExtender
 - The base extender class for Select queries.
 
Namespace
Drupal\Core\Database\QueryCode
public function conditionGroupFactory($conjunction = 'AND') {
  return $this->connection
    ->condition($conjunction);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.