function UserPicture::query

Same name in other branches
  1. 8.9.x core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php \Drupal\user\Plugin\migrate\source\d6\UserPicture::query()
  2. 10 core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php \Drupal\user\Plugin\migrate\source\d6\UserPicture::query()
  3. 11.x core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php \Drupal\user\Plugin\migrate\source\d6\UserPicture::query()

Overrides SqlBase::query

File

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

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.