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

Breadcrumb

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

function QueryBase::getClass

Finds a class in a list of namespaces.

Searches in the order of the array, and returns the first one it finds.

Parameters

array $namespaces: A list of namespaces.

string $short_class_name: A class name without namespace.

Return value

string The fully qualified name of the class.

8 calls to QueryBase::getClass()
ConditionAggregate::compile in core/lib/Drupal/Core/Entity/Query/Sql/ConditionAggregate.php
Compiles this conditional clause.
Query::getTables in core/lib/Drupal/Core/Entity/Query/Sql/Query.php
Gets the Tables object for this query.
QueryAggregate::conditionAggregateGroupFactory in core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php
Creates an object holding a group of conditions.
QueryBase::conditionGroupFactory in core/lib/Drupal/Core/Entity/Query/QueryBase.php
Creates an object holding a group of conditions.
QueryFactory::get in core/lib/Drupal/Core/Entity/Query/Sql/QueryFactory.php
Instantiates an entity query for a given entity type.

... See full list

File

core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 504

Class

QueryBase
The base entity query class.

Namespace

Drupal\Core\Entity\Query

Code

public static function getClass(array $namespaces, $short_class_name) {
    foreach ($namespaces as $namespace) {
        $class = $namespace . '\\' . $short_class_name;
        if (class_exists($class)) {
            return $class;
        }
    }
}

API Navigation

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