You are here

public function EntityLegalDocument::query in Entity Legal 3.0.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/migrate/source/EntityLegalDocument.php \Drupal\entity_legal\Plugin\migrate\source\EntityLegalDocument::query()
  2. 4.0.x src/Plugin/migrate/source/EntityLegalDocument.php \Drupal\entity_legal\Plugin\migrate\source\EntityLegalDocument::query()

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

src/Plugin/migrate/source/EntityLegalDocument.php, line 20

Class

EntityLegalDocument
Drupal entity legal document migration source plugin.

Namespace

Drupal\entity_legal\Plugin\migrate\source

Code

public function query() {
  return $this
    ->select('entity_legal_document', 'd')
    ->fields('d');
}