function UserPictureFile::query
Same name in other branches
- 9 core/modules/user/src/Plugin/migrate/source/d6/UserPictureFile.php \Drupal\user\Plugin\migrate\source\d6\UserPictureFile::query()
- 8.9.x core/modules/user/src/Plugin/migrate/source/d6/UserPictureFile.php \Drupal\user\Plugin\migrate\source\d6\UserPictureFile::query()
- 10 core/modules/user/src/Plugin/migrate/source/d6/UserPictureFile.php \Drupal\user\Plugin\migrate\source\d6\UserPictureFile::query()
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\d6Code
public function query() {
$query = $this->select('users', 'u')
->condition('u.picture', '', '<>')
->fields('u', [
'uid',
'picture',
]);
return $query;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.