You are here

public function UserPicture::query in Drupal 8

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

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php, line 22

Class

UserPicture
Drupal 6 user picture source from database.

Namespace

Drupal\user\Plugin\migrate\source\d6

Code

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