You are here

public function Authmap::query in External Authentication 8

Same name and namespace in other branches
  1. 2.0.x src/Plugin/migrate/source/Authmap.php \Drupal\externalauth\Plugin\migrate\source\Authmap::query()

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

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

Class

Authmap
Drupal authmap source from database.

Namespace

Drupal\externalauth\Plugin\migrate\source

Code

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