function File::query
Return value
\Drupal\Core\Database\Query\SelectInterface
Overrides SqlBase::query
File
- 
              core/modules/ file/ src/ Plugin/ migrate/ source/ d6/ File.php, line 68 
Class
- File
- Drupal 6 file source from database.
Namespace
Drupal\file\Plugin\migrate\source\d6Code
public function query() {
  return $this->select('files', 'f')
    ->fields('f')
    ->condition('f.filepath', '/tmp%', 'NOT LIKE')
    ->orderBy('f.timestamp')
    ->orderBy('f.fid');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
