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

Breadcrumb

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

function ContentEntity::query

Query to retrieve the entities.

Return value

\Drupal\Core\Entity\Query\QueryInterface The query.

File

core/modules/migrate_drupal/src/Plugin/migrate/source/ContentEntity.php, line 227

Class

ContentEntity
Source plugin to get content entities from the current version of Drupal.

Namespace

Drupal\migrate_drupal\Plugin\migrate\source

Code

public function query() {
    $query = $this->entityTypeManager
        ->getStorage($this->entityType
        ->id())
        ->getQuery()
        ->accessCheck(FALSE);
    if (!empty($this->configuration['bundle'])) {
        $query->condition($this->entityType
            ->getKey('bundle'), $this->configuration['bundle']);
    }
    // Exclude anonymous user account.
    if ($this->entityType
        ->id() === 'user' && !empty($this->entityType
        ->getKey('id'))) {
        $query->condition($this->entityType
            ->getKey('id'), 0, '>');
    }
    return $query;
}

API Navigation

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