class Condition in Drupal 8
Same name in this branch
- 8 core/lib/Drupal/Core/Condition/Annotation/Condition.php \Drupal\Core\Condition\Annotation\Condition
- 8 core/lib/Drupal/Core/Database/Query/Condition.php \Drupal\Core\Database\Query\Condition
- 8 core/lib/Drupal/Core/Config/Entity/Query/Condition.php \Drupal\Core\Config\Entity\Query\Condition
- 8 core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php \Drupal\Core\Entity\KeyValueStore\Query\Condition
- 8 core/lib/Drupal/Core/Entity/Query/Sql/Condition.php \Drupal\Core\Entity\Query\Sql\Condition
- 8 core/lib/Drupal/Core/Entity/Query/Null/Condition.php \Drupal\Core\Entity\Query\Null\Condition
- 8 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php \Drupal\Core\Entity\Query\Sql\pgsql\Condition
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Entity/Query/Null/Condition.php \Drupal\Core\Entity\Query\Null\Condition
- 10 core/lib/Drupal/Core/Entity/Query/Null/Condition.php \Drupal\Core\Entity\Query\Null\Condition
Defines the condition class for the null entity query.
Hierarchy
- class \Drupal\Core\Entity\Query\ConditionFundamentals- class \Drupal\Core\Entity\Query\ConditionBase implements ConditionInterface- class \Drupal\Core\Entity\Query\Null\Condition
 
 
- class \Drupal\Core\Entity\Query\ConditionBase implements ConditionInterface
Expanded class hierarchy of Condition
6 string references to 'Condition'
- ConditionAggregate::compile in core/lib/ Drupal/ Core/ Entity/ Query/ Sql/ ConditionAggregate.php 
- Compiles this conditional clause.
- Connection::condition in core/lib/ Drupal/ Core/ Database/ Connection.php 
- Prepares and returns a CONDITION query object.
- Connection::getDriverClass in core/lib/ Drupal/ Core/ Database/ Connection.php 
- Gets the driver-specific override class if any for the specified class.
- core.data_types.schema.yml in core/config/ schema/ core.data_types.schema.yml 
- core/config/schema/core.data_types.schema.yml
- LoggedStatementsTrait::getDriverClass in core/modules/ system/ tests/ modules/ database_statement_monitoring_test/ src/ LoggedStatementsTrait.php 
File
- core/lib/ Drupal/ Core/ Entity/ Query/ Null/ Condition.php, line 10 
Namespace
Drupal\Core\Entity\Query\NullView source
class Condition extends ConditionBase {
  /**
   * {@inheritdoc}
   */
  public function compile($query) {
  }
  /**
   * {@inheritdoc}
   */
  public function exists($field, $langcode = NULL) {
    return $this
      ->condition($field, NULL, 'IS NOT NULL', $langcode);
  }
  /**
   * {@inheritdoc}
   */
  public function notExists($field, $langcode = NULL) {
    return $this
      ->condition($field, NULL, 'IS NULL', $langcode);
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| Condition:: | public | function | Compiles this conditional clause. Overrides ConditionInterface:: | |
| Condition:: | public | function | Queries for the existence of a field. Overrides ConditionInterface:: | |
| Condition:: | public | function | Queries for the nonexistence of a field. Overrides ConditionInterface:: | |
| ConditionBase:: | public | function | Adds a condition. Overrides ConditionInterface:: | |
| ConditionFundamentals:: | protected | property | Array of conditions. | |
| ConditionFundamentals:: | protected | property | The conjunction of this condition group. The value is one of the following: | |
| ConditionFundamentals:: | protected | property | List of potential namespaces of the classes belonging to this condition. | |
| ConditionFundamentals:: | protected | property | The query this condition belongs to. | 1 | 
| ConditionFundamentals:: | public | function | ||
| ConditionFundamentals:: | public | function | ||
| ConditionFundamentals:: | public | function | ||
| ConditionFundamentals:: | public | function | Implements the magic __clone function. | |
| ConditionFundamentals:: | public | function | Constructs a Condition object. | 
