You are here

public function UserPictureFile::query in Drupal 10

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

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

core/modules/user/src/Plugin/migrate/source/d6/UserPictureFile.php, line 44

Class

UserPictureFile
Drupal 6 user picture source from database.

Namespace

Drupal\user\Plugin\migrate\source\d6

Code

public function query() {
  $query = $this
    ->select('users', 'u')
    ->condition('u.picture', '', '<>')
    ->fields('u', [
    'uid',
    'picture',
  ]);
  return $query;
}