You are here

public function MigrateTeamMember::__construct in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 includes/team.inc \MigrateTeamMember::__construct()

File

includes/team.inc, line 29
Info on migration team members. Display-only at the moment, but eventually there should be notification features.

Class

MigrateTeamMember
@file Info on migration team members. Display-only at the moment, but eventually there should be notification features.

Code

public function __construct($name, $email_address, $group) {
  $this->name = $name;
  $this->emailAddress = $email_address;
  $this->group = $group;
}