You are here

public function DrupalMenuMigration::__construct in Drupal-to-Drupal data migration 7.2

Parameters

array $arguments:

Overrides DrupalMigration::__construct

1 call to DrupalMenuMigration::__construct()
DrupalMenu6Migration::__construct in d6/menu.inc
1 method overrides DrupalMenuMigration::__construct()
DrupalMenu6Migration::__construct in d6/menu.inc

File

./menu.inc, line 14
Base class for migrating menus into Drupal.

Class

DrupalMenuMigration

Code

public function __construct(array $arguments) {
  parent::__construct($arguments);

  // Create our three main objects - source, destination, and map
  $this->source = new MigrateSourceSQL($this
    ->query(), $this->sourceFields, NULL, $this->sourceOptions);
  $this->destination = new MigrateDestinationMenu();
  $this->map = new MigrateSQLMap($this->machineName, array(
    'menu_name' => array(
      'type' => 'varchar',
      'length' => 32,
      'not null' => TRUE,
      'default' => '',
      'description' => 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.',
      'alias' => 'm',
    ),
  ), MigrateDestinationMenu::getKeySchema(), $this->mapConnection);

  // The mappings are straightforward
  // @todo: Does this work for D5 as well, or should we move this to d6/menu.inc?
  $this
    ->addSimpleMappings(array(
    'menu_name',
    'title',
    'description',
  ));
}