You are here

public function User::query in Drupal 9

Same name in this branch
  1. 9 core/modules/user/src/Plugin/migrate/source/d6/User.php \Drupal\user\Plugin\migrate\source\d6\User::query()
  2. 9 core/modules/user/src/Plugin/migrate/source/d7/User.php \Drupal\user\Plugin\migrate\source\d7\User::query()
Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/migrate/source/d6/User.php \Drupal\user\Plugin\migrate\source\d6\User::query()
  2. 10 core/modules/user/src/Plugin/migrate/source/d6/User.php \Drupal\user\Plugin\migrate\source\d6\User::query()

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

core/modules/user/src/Plugin/migrate/source/d6/User.php, line 25

Class

User
Drupal 6 user source from database.

Namespace

Drupal\user\Plugin\migrate\source\d6

Code

public function query() {
  return $this
    ->select('users', 'u')
    ->fields('u', array_keys($this
    ->baseFields()))
    ->condition('u.uid', 0, '>');
}