You are here

protected function DrupalMenuLinks6Migration::query in Drupal-to-Drupal data migration 7.2

Query for the basic menu_links data.

Return value

QueryConditionInterface

Overrides DrupalMigration::query

File

d6/menu_links.inc, line 62
Implementation of DrupalMenuLinksMigration for Drupal 6 sources.

Class

DrupalMenuLinks6Migration

Code

protected function query() {
  $query = Database::getConnection('default', $this->sourceConnection)
    ->select('menu_links', 'm')
    ->fields('m');
  return $query;
}