protected function DrupalMenu6Migration::query in Drupal-to-Drupal data migration 7.2
Query for the basic menu data.
Return value
Overrides DrupalMigration::query
File
- d6/
menu.inc, line 25 - Implementation of DrupalMenuMigration for Drupal 6 sources.
Class
Code
protected function query() {
$query = Database::getConnection('default', $this->sourceConnection)
->select('menu_custom', 'm')
->fields('m');
return $query;
}