function VariableTranslation::query
Return value
\Drupal\Core\Database\Query\SelectInterface
Overrides SqlBase::query
File
- 
              core/modules/ migrate_drupal/ src/ Plugin/ migrate/ source/ d7/ VariableTranslation.php, line 119 
Class
- VariableTranslation
- Drupal 7 variable_store source from database.
Namespace
Drupal\migrate_drupal\Plugin\migrate\source\d7Code
public function query() {
  return $this->select('variable_store', 'vs')
    ->fields('vs')
    ->condition('realm', 'language')
    ->condition('name', (array) $this->configuration['variables'], 'IN');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
