You are here

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

Parameters

array $arguments:

Overrides DrupalRoleMigration::__construct

File

d6/role.inc, line 14
Implementation of DrupalRoleMigration for Drupal 6 sources.

Class

DrupalRole6Migration
Handling specific to a Drupal 6 source for roles.

Code

public function __construct(array $arguments) {
  parent::__construct($arguments);
  $this
    ->addUnmigratedDestinations(array(
    'weight',
  ));
}