Condition.php

Same filename in this branch
  1. 10 core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Condition.php
  2. 10 core/lib/Drupal/Core/Config/Entity/Query/Condition.php
  3. 10 core/lib/Drupal/Core/Database/Query/Condition.php
  4. 10 core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
  5. 10 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php
  6. 10 core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php
  7. 10 core/lib/Drupal/Core/Condition/Attribute/Condition.php
  8. 10 core/lib/Drupal/Core/Condition/Annotation/Condition.php
Same filename and directory in other branches
  1. 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Condition.php
  2. 9 core/lib/Drupal/Core/Config/Entity/Query/Condition.php
  3. 9 core/lib/Drupal/Core/Database/Query/Condition.php
  4. 9 core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
  5. 9 core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php
  6. 9 core/lib/Drupal/Core/Entity/Query/Null/Condition.php
  7. 9 core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php
  8. 9 core/lib/Drupal/Core/Condition/Annotation/Condition.php
  9. 8.9.x core/lib/Drupal/Core/Config/Entity/Query/Condition.php
  10. 8.9.x core/lib/Drupal/Core/Database/Query/Condition.php
  11. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
  12. 8.9.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php
  13. 8.9.x core/lib/Drupal/Core/Entity/Query/Null/Condition.php
  14. 8.9.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php
  15. 8.9.x core/lib/Drupal/Core/Condition/Annotation/Condition.php
  16. 11.x core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Condition.php
  17. 11.x core/lib/Drupal/Core/Config/Entity/Query/Condition.php
  18. 11.x core/lib/Drupal/Core/Database/Query/Condition.php
  19. 11.x core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
  20. 11.x core/lib/Drupal/Core/Entity/Query/Sql/pgsql/Condition.php
  21. 11.x core/lib/Drupal/Core/Entity/Query/Null/Condition.php
  22. 11.x core/lib/Drupal/Core/Entity/KeyValueStore/Query/Condition.php
  23. 11.x core/lib/Drupal/Core/Condition/Attribute/Condition.php
  24. 11.x core/lib/Drupal/Core/Condition/Annotation/Condition.php

Namespace

Drupal\Core\Entity\Query\Null

File

core/lib/Drupal/Core/Entity/Query/Null/Condition.php

View source
<?php

namespace Drupal\Core\Entity\Query\Null;

use Drupal\Core\Entity\Query\ConditionBase;

/**
 * Defines the condition class for the null entity query.
 */
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);
    }

}

Classes

Title Deprecated Summary
Condition Defines the condition class for the null entity query.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.