Interface for a conditional clause in a query.
Hierarchy
- interface \Drupal\Core\Database\Query\ConditionInterface
File
- core/lib/Drupal/Core/Database/Query/ConditionInterface.php, line 10
Namespace
Drupal\Core\Database\Query
Members
Name | Modifiers | Type | Description |
---|---|---|---|
ConditionInterface::andConditionGroup | public | function | Creates a new group of conditions ANDed together. |
ConditionInterface::arguments | public | function | Gets a complete list of all values to insert into the prepared statement. |
ConditionInterface::compile | public | function | Compiles the saved conditions for later retrieval. |
ConditionInterface::compiled | public | function | Check whether a condition has been previously compiled. |
ConditionInterface::condition | public | function | Helper function: builds the most common conditional clauses. |
ConditionInterface::conditionGroupFactory | public | function | Creates an object holding a group of conditions. |
ConditionInterface::conditions | public | function | Gets a complete list of all conditions in this conditional clause. |
ConditionInterface::exists | public | function | Sets a condition that the specified subquery returns values. |
ConditionInterface::isNotNull | public | function | Sets a condition that the specified field be NOT NULL. |
ConditionInterface::isNull | public | function | Sets a condition that the specified field be NULL. |
ConditionInterface::notExists | public | function | Sets a condition that the specified subquery returns no values. |
ConditionInterface::orConditionGroup | public | function | Creates a new group of conditions ORed together. |
ConditionInterface::where | public | function | Adds an arbitrary WHERE clause to the query. |
Please login to continue.