function UserEntityTranslation::query
Prepares query object to retrieve data from the source database.
This method should not be called directly. It is called automatically from SqlBase::prepareQuery().
Return value
\Drupal\Core\Database\Query\SelectInterface A Select query object with the source data.
Overrides SqlBase::query
File
-
core/
modules/ user/ src/ Plugin/ migrate/ source/ d7/ UserEntityTranslation.php, line 26
Class
- UserEntityTranslation
- Drupal 7 user entity translations source from database.
Namespace
Drupal\user\Plugin\migrate\source\d7Code
public function query() {
$query = $this->select('entity_translation', 'et')
->fields('et')
->condition('et.entity_type', 'user')
->condition('et.source', '', '<>');
return $query;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.