Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Query.php

function Query::condition

Overrides \Drupal\Core\Entity\Query\QueryBase::condition().

Additional to the syntax defined in the QueryInterface you can use placeholders (*) to match all keys of a subarray. Let's take the follow yaml file as example:


 level1:
   level2a:
     level3: 1
   level2b:
     level3: 2

Then you can filter out via $query->condition('level1.*.level3', 1).

Overrides QueryBase::condition

File

core/lib/Drupal/Core/Config/Entity/Query/Query.php, line 73

Class

Query
Defines the entity query for configuration entities.

Namespace

Drupal\Core\Config\Entity\Query

Code

public function condition($property, $value = NULL, $operator = NULL, $langcode = NULL) {
    return parent::condition($property, $value, $operator, $langcode);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal