You are here

public function OgMigrateOgurRoles::__construct in Organic groups 7.2

Override constructor from Migration class.

Overrides MigrationBase::__construct

File

includes/migrate/7000/og_ogur_roles.migrate.inc, line 13
Add OG related fields to group and group-content node-types.

Class

OgMigrateOgurRoles
@file Add OG related fields to group and group-content node-types.

Code

public function __construct($arguments) {
  parent::__construct($arguments);
  $this->description = t('Create OG Roles for OGUR roles from system role table.');
  $this->enabled = !$this
    ->isComplete();
  $this->dependencies[] = 'OgMigrateAddFields';
}