public function User::query in Drupal 10
Same name in this branch
- 10 core/modules/user/src/Plugin/migrate/source/d6/User.php \Drupal\user\Plugin\migrate\source\d6\User::query()
- 10 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
- 8 core/modules/user/src/Plugin/migrate/source/d6/User.php \Drupal\user\Plugin\migrate\source\d6\User::query()
- 9 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 26
Class
- User
- Drupal 6 user source from database.
Namespace
Drupal\user\Plugin\migrate\source\d6Code
public function query() {
return $this
->select('users', 'u')
->fields('u', array_keys($this
->baseFields()))
->condition('u.uid', 0, '>');
}