class MigrateTeamMember in Migrate 7.2
Same name and namespace in other branches
- 6.2 includes/team.inc \MigrateTeamMember
@file Info on migration team members. Display-only at the moment, but eventually there should be notification features.
Hierarchy
- class \MigrateTeamMember
Expanded class hierarchy of MigrateTeamMember
File
- includes/
team.inc, line 9 - Info on migration team members. Display-only at the moment, but eventually there should be notification features.
View source
class MigrateTeamMember {
protected $name;
public function getName() {
return $this->name;
}
protected $emailAddress;
public function getEmailAddress() {
return $this->emailAddress;
}
protected $group;
public function getGroup() {
return $this->group;
}
public function __construct($name, $email_address, $group) {
$this->name = $name;
$this->emailAddress = $email_address;
$this->group = $group;
}
public function contact($subject, $text) {
// TODO
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateTeamMember:: |
protected | property | ||
MigrateTeamMember:: |
protected | property | ||
MigrateTeamMember:: |
protected | property | ||
MigrateTeamMember:: |
public | function | ||
MigrateTeamMember:: |
public | function | ||
MigrateTeamMember:: |
public | function | ||
MigrateTeamMember:: |
public | function | ||
MigrateTeamMember:: |
public | function |