You are here

public function LibraryItem::query in Library 8

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

src/Plugin/migrate/source/d6/LibraryItem.php, line 20

Class

LibraryItem
Drupal 6 library source.

Namespace

Drupal\library\Plugin\migrate\source\d6

Code

public function query() {
  $query = $this
    ->select('library', 'l')
    ->fields('l');
  return $query;
}